We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc3bf52 commit 8ac1f25Copy full SHA for 8ac1f25
tests/TestCase/Command/UpgradeCommandTest.php
@@ -132,7 +132,11 @@ public function testExecuteWithMigrations(): void
132
$this->getAdapter()->getInsertBuilder()
133
->insert(['version', 'migration_name', 'breakpoint'])
134
->into('phinxlog')
135
- ->values(['20250118143003', 'TestMigration', 0])
+ ->values([
136
+ 'version' => '20250118143003',
137
+ 'migration_name' => 'TestMigration',
138
+ 'breakpoint' => 0,
139
+ ])
140
->execute();
141
142
$this->exec('migrations upgrade -c test');
0 commit comments