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 62896df commit f68a33cCopy full SHA for f68a33c
tests/WP_SQLite_Translator_Tests.php
@@ -293,7 +293,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
293
$this->assertQuery(
294
"CREATE TABLE _tmp_table (
295
ID BIGINT PRIMARY KEY AUTO_INCREMENT NOT NULL,
296
- created_at datetime NOT NULL
+ created_at datetime NOT NULL
297
);"
298
);
299
@@ -305,7 +305,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
305
$this->assertEquals(
306
307
`ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
308
- `created_at` datetime NOT NULL
+ `created_at` datetime NOT NULL
309
);",
310
$results[0]->{'Create Table'}
311
0 commit comments