Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Dec 14, 2024
1 parent bcd5a1c commit f532626
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/ColumnSchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,11 @@ public function testLongtextType(): void
$command->createTable(
'text_type',
[
'tinytext' => ColumnBuilder::text(85),
'text' => ColumnBuilder::text(21_845),
'mediumtext' => ColumnBuilder::text(5_592_405),
'tinytext' => ColumnBuilder::text(63),
'text' => ColumnBuilder::text(16_383),
'mediumtext' => ColumnBuilder::text(4_194_303),
'longtext' => ColumnBuilder::text(4_294_967_295),
],
'ENGINE=InnoDB DEFAULT CHARSET=utf8'
)->execute();

$table = $db->getSchema()->getTableSchema('text_type');
Expand Down

0 comments on commit f532626

Please sign in to comment.