We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a02ce commit 0ef7884Copy full SHA for 0ef7884
1 file changed
tests/Phinx/Db/Adapter/MysqlAdapterTest.php
@@ -2851,15 +2851,15 @@ public function testChangeColumnWithAlgorithm(): void
2851
->create();
2852
2853
$table->changeColumn('description', 'string', [
2854
- 'limit' => 255,
+ 'limit' => 250,
2855
'algorithm' => MysqlAdapter::ALGORITHM_INPLACE,
2856
'lock' => MysqlAdapter::LOCK_SHARED,
2857
])->update();
2858
2859
$columns = $this->adapter->getColumns('items');
2860
foreach ($columns as $column) {
2861
if ($column->getName() === 'description') {
2862
- $this->assertEquals(255, $column->getLimit());
+ $this->assertEquals(250, $column->getLimit());
2863
}
2864
2865
0 commit comments