Skip to content

Commit

Permalink
Test: Fix Length of Title Field in DB
Browse files Browse the repository at this point in the history
  • Loading branch information
kergomard committed Sep 30, 2024
1 parent 776f798 commit 200a846
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]
);
}
}

0 comments on commit 200a846

Please sign in to comment.