19 declare(strict_types=1);
32 $this->db->manipulateF(
'UPDATE qpl_questions SET title=%s WHERE ISNULL(title)', [
ilDBConstants::T_TEXT], [
'']);
33 $this->db->manipulateF(
'UPDATE qpl_questions SET description=%s WHERE ISNULL(description)', [
ilDBConstants::T_TEXT], [
'']);
34 $this->db->manipulateF(
'UPDATE qpl_questions SET question_text=%s WHERE ISNULL(question_text)', [
ilDBConstants::T_TEXT], [
'']);
35 $this->db->manipulateF(
'UPDATE qpl_questions SET lifecycle=%s WHERE ISNULL(lifecycle)', [
ilDBConstants::T_TEXT], [
'draft']);
36 $this->db->manipulateF(
'UPDATE qpl_questions SET complete=%s WHERE ISNULL(complete)', [
ilDBConstants::T_TEXT], [
'1']);
37 $this->db->modifyTableColumn(
'qpl_questions',
'title', [
'notnull' => 1,
'default' =>
'']);
38 $this->db->modifyTableColumn(
'qpl_questions',
'description', [
'notnull' => 1,
'default' =>
'']);
39 $this->db->modifyTableColumn(
'qpl_questions',
'question_text', [
'notnull' => 1,
'default' =>
'']);
40 $this->db->modifyTableColumn(
'qpl_questions',
'lifecycle', [
'notnull' => 1,
'default' =>
'draft']);
41 $this->db->modifyTableColumn(
'qpl_questions',
'complete', [
'notnull' => 1,
'default' =>
'1']);
46 if ($this->db->tableColumnExists(
'qpl_questionpool',
'show_taxonomies')) {
47 $this->db->dropTableColumn(
'qpl_questionpool',
'show_taxonomies');
prepare(ilDBInterface $db)