diff --git a/tests/TestCase/Database/Schema/PostgresSchemaTest.php b/tests/TestCase/Database/Schema/PostgresSchemaTest.php index 14d1893a478..36c82e4b370 100644 --- a/tests/TestCase/Database/Schema/PostgresSchemaTest.php +++ b/tests/TestCase/Database/Schema/PostgresSchemaTest.php @@ -652,7 +652,7 @@ public static function columnSqlProvider() [ 'title', ['type' => 'string', 'length' => 25, 'null' => true, 'default' => 'ignored'], - '"title" VARCHAR(25) DEFAULT \'ignored\'', + '"title" VARCHAR(25) NULL DEFAULT \'ignored\'', ], [ 'id', @@ -817,7 +817,7 @@ public static function columnSqlProvider() [ 'created', ['type' => 'timestamp', 'null' => true], - '"created" TIMESTAMP DEFAULT NULL' + '"created" TIMESTAMP NULL DEFAULT NULL' ], ]; }