File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 },
3030 "require-dev" : {
3131 "cakephp/bake" : " ^3.3" ,
32- "cakephp/cakephp" : " ^5.3.1 " ,
32+ "cakephp/cakephp" : " ^5.3.2 " ,
3333 "cakephp/cakephp-codesniffer" : " ^5.0" ,
3434 "phpunit/phpunit" : " ^11.5.3 || ^12.1.3"
3535 },
Original file line number Diff line number Diff line change @@ -220,9 +220,7 @@ public function testMigrateAndRollback()
220220 $ createdColumn = $ storesTable ->getSchema ()->getColumn ('created ' );
221221 $ expected = 'CURRENT_TIMESTAMP ' ;
222222 $ driver = $ this ->Connection ->getDriver ();
223- if ($ driver instanceof Mysql && $ driver ->isMariadb ()) {
224- $ expected = 'current_timestamp() ' ;
225- } elseif ($ driver instanceof Sqlserver) {
223+ if ($ driver instanceof Sqlserver) {
226224 $ expected = 'getdate() ' ;
227225 }
228226 $ this ->assertEquals ($ expected , $ createdColumn ['default ' ]);
You can’t perform that action at this time.
0 commit comments