Skip to content

Commit 2d3914c

Browse files
committed
[2323] try another limit
1 parent 57ed5d4 commit 2d3914c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Phinx/Db/Adapter/MysqlAdapterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2843,11 +2843,11 @@ public function testChangeColumnWithAlgorithm(): void
28432843
$this->adapter->connect();
28442844

28452845
$table = new Table('items', [], $this->adapter);
2846-
$table->addColumn('description', 'string', ['limit' => 100])
2846+
$table->addColumn('description', 'string', ['limit' => 10])
28472847
->create();
28482848

28492849
$table->changeColumn('description', 'string', [
2850-
'limit' => 200,
2850+
'limit' => 20,
28512851
'algorithm' => MysqlAdapter::ALGORITHM_INPLACE,
28522852
'lock' => MysqlAdapter::LOCK_SHARED,
28532853
])->update();

0 commit comments

Comments
 (0)