diff --git a/components/ILIAS/TestQuestionPool/classes/Setup/class.ilTestQuestionPool9DBUpdateSteps.php b/components/ILIAS/TestQuestionPool/classes/Setup/class.ilTestQuestionPool9DBUpdateSteps.php index 14efe5238c13..279d9ba9e959 100755 --- a/components/ILIAS/TestQuestionPool/classes/Setup/class.ilTestQuestionPool9DBUpdateSteps.php +++ b/components/ILIAS/TestQuestionPool/classes/Setup/class.ilTestQuestionPool9DBUpdateSteps.php @@ -76,4 +76,13 @@ public function step_5(): void ['type' => 'text', 'length' => 512] ); } + + public function step_6(): void + { + $this->db->modifyTableColumn( + 'qpl_questions', + 'title', + ['type' => 'text', 'length' => 124] + ); + } }