We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43782e commit 056bb18Copy full SHA for 056bb18
tests/WP_SQLite_Translator_Tests.php
@@ -294,7 +294,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
294
$this->assertQuery(
295
"CREATE TABLE _tmp_table (
296
ID BIGINT PRIMARY KEY AUTO_INCREMENT NOT NULL,
297
- created_at datetime NOT NULL
+ created_at datetime NOT NULL
298
);"
299
);
300
@@ -306,7 +306,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
306
$this->assertEquals(
307
308
`ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
309
- `created_at` datetime NOT NULL
+ `created_at` datetime NOT NULL
310
);",
311
$results[0]->{'Create Table'}
312
0 commit comments