Closed
Description
CREATE TABLE test.[Migration Failure] (
ID BIGINT IDENTITY PRIMARY KEY,
[Test] VARCHAR(255) NOT NULL
);
-- //@UNDO
DROP TABLE test.[Migration Failure];
up + down successfully completes but down is an empty statement.
CREATE TABLE test.[Migration Failure] (
ID BIGINT IDENTITY PRIMARY KEY,
[Test] VARCHAR(255) NOT NULL
);
-- //@UNDO
DROP TABLE test.[Migration Failure];
up + down successfully correctly. The only difference is adding a return after the DROP statement.
Probably relates to #101 but need to investigate more.