diff --git a/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php b/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php index 4d9078800d9f..7dda7c48cf6a 100644 --- a/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php +++ b/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php @@ -468,4 +468,19 @@ public function step_13(): void ['operation' => [\ilDBConstants::T_TEXT, 'tst_results']] ); } + + public function step_14(): void + { + if (!$this->db->tableColumnExists('tst_tests', 'introduction')) { + $this->db->addTableColumn( + 'tst_tests', + 'introduction', + [ + 'type' => \ilDBConstants::T_TEXT, + 'length' => 4000, + 'default' => null + ] + ); + } + } }