From 68df80bd7f3e0ea102157429a13f66d9f75864a6 Mon Sep 17 00:00:00 2001 From: AJ Quick Date: Mon, 16 Jan 2017 21:58:12 -0700 Subject: [PATCH] Update SqlserverSchemaTest.php --- tests/TestCase/Database/Schema/SqlserverSchemaTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestCase/Database/Schema/SqlserverSchemaTest.php b/tests/TestCase/Database/Schema/SqlserverSchemaTest.php index 7fc805708a0..ef614733730 100644 --- a/tests/TestCase/Database/Schema/SqlserverSchemaTest.php +++ b/tests/TestCase/Database/Schema/SqlserverSchemaTest.php @@ -499,7 +499,7 @@ public static function columnSqlProvider() [ 'title', ['type' => 'string', 'length' => 25, 'null' => true, 'default' => 'ignored'], - "[title] NVARCHAR(25) NULL DEFAULT 'ignored'" + "[title] NVARCHAR(25) DEFAULT 'ignored'" ], [ 'id', @@ -641,12 +641,12 @@ public static function columnSqlProvider() [ 'null_date', ['type' => 'datetime', 'null' => true, 'default' => 'current_timestamp'], - '[null_date] DATETIME NULL DEFAULT CURRENT_TIMESTAMP' + '[null_date] DATETIME DEFAULT CURRENT_TIMESTAMP' ], [ 'null_date', ['type' => 'datetime', 'null' => true], - '[null_date] DATETIME NULL DEFAULT NULL' + '[null_date] DATETIME DEFAULT NULL' ], // Date & Time [ @@ -663,7 +663,7 @@ public static function columnSqlProvider() [ 'created', ['type' => 'timestamp', 'null' => true], - '[created] DATETIME NULL DEFAULT NULL' + '[created] DATETIME DEFAULT NULL' ], ]; }