We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad3b87 commit 5e41e8aCopy full SHA for 5e41e8a
tests/integration/Db/Dialect/Mysql/CreateTableCest.php
@@ -96,9 +96,9 @@ public function dbAdapterPdoMysqlCreateTable(IntegrationTester $I)
96
$expected = <<<SQL
97
CREATE TABLE `test` (
98
`id` INT(11) NOT NULL AUTO_INCREMENT,
99
- `numeric_val` FLOAT NOT NULL DEFAULT 21.42 NOT NULL,
100
- `null_int` INT(11) NULL AFTER `numeric_val`,
101
- `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `null_int`,
+ `numeric_val` FLOAT NOT NULL DEFAULT 21.42,
+ `null_int` INT(11) NULL,
+ `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
102
`updated_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
103
`deleted_at` TIMESTAMP NULL,
104
PRIMARY KEY (`id`)
0 commit comments