Skip to content

Commit

Permalink
#384 Defer Foreign references during creation / Test fixed for MSSQL #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac committed Sep 21, 2018
1 parent d7c1163 commit e4e1d90
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,9 @@ class DDLTests : DatabaseTestsBase() {
if (currentDialect is PostgreSQLDialect) {
exec("set constraints all deferred;")
}
if (currentDialect is SQLServerDialect) {
exec("DROP TABLE ${identity(Table1)}, ${identity(Table2)} CASCADE;")
}
}
}

Expand Down

0 comments on commit e4e1d90

Please sign in to comment.