We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57ed5d4 commit 2d3914cCopy full SHA for 2d3914c
1 file changed
tests/Phinx/Db/Adapter/MysqlAdapterTest.php
@@ -2843,11 +2843,11 @@ public function testChangeColumnWithAlgorithm(): void
2843
$this->adapter->connect();
2844
2845
$table = new Table('items', [], $this->adapter);
2846
- $table->addColumn('description', 'string', ['limit' => 100])
+ $table->addColumn('description', 'string', ['limit' => 10])
2847
->create();
2848
2849
$table->changeColumn('description', 'string', [
2850
- 'limit' => 200,
+ 'limit' => 20,
2851
'algorithm' => MysqlAdapter::ALGORITHM_INPLACE,
2852
'lock' => MysqlAdapter::LOCK_SHARED,
2853
])->update();
0 commit comments