Skip to content

Commit

Permalink
Fix broken alter table test
Browse files Browse the repository at this point in the history
Signed-off-by: Will Jones <will@stratagem-uk.tech>
  • Loading branch information
Will Jones committed Jul 8, 2021
1 parent f4aeef0 commit 32309b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/Sql/Ddl/AlterTableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 32309b6

Please sign in to comment.