From 32309b633acb1a9abcb41bb45fd7de000f87b489 Mon Sep 17 00:00:00 2001 From: Will Jones Date: Thu, 8 Jul 2021 10:25:48 +0100 Subject: [PATCH] Fix broken alter table test Signed-off-by: Will Jones --- test/unit/Sql/Ddl/AlterTableTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/Sql/Ddl/AlterTableTest.php b/test/unit/Sql/Ddl/AlterTableTest.php index 7c0af31b..f4c3c30c 100644 --- a/test/unit/Sql/Ddl/AlterTableTest.php +++ b/test/unit/Sql/Ddl/AlterTableTest.php @@ -106,7 +106,7 @@ public function testGetSqlString() CHANGE COLUMN "name" "new_name" VARCHAR(50) NOT NULL, DROP COLUMN "foo", ADD CONSTRAINT "my_fk" FOREIGN KEY ("other_id") REFERENCES "other_table" ("id") ON DELETE CASCADE ON UPDATE CASCADE, - DROP CONSTRAINT "my_constraint" + DROP CONSTRAINT "my_constraint", DROP INDEX "my_index" EOS;