From bf03ac36cf953305d1e67977fce2552de7ef766f Mon Sep 17 00:00:00 2001 From: Matheus Zych Date: Tue, 3 Mar 2026 09:11:51 +0100 Subject: [PATCH] Fixes SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'try' in table page_qst_answer --- components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php b/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php index a8bbe3dc9e24..d85c9d669a7f 100644 --- a/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php +++ b/components/ILIAS/Test/src/Setup/Test10DBUpdateSteps.php @@ -484,4 +484,9 @@ public function step_15(): void 'DELETE FROM settings WHERE module="assessment" AND keyword="export_essay_qst_with_html"' ); } + + public function step_16(): void + { + $this->db->modifyTableColumn('page_qst_answer', 'try', ['length' => 4]); + } }