-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete Previously Existing Tables if Created from old SQLAlchemy migr…
…ations (#423)
- Loading branch information
Showing
2 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
drop table metric; | ||
drop table metric cascade; | ||
|
||
drop table confusion_matrix; | ||
drop table confusion_matrix cascade; | ||
|
||
drop table evaluation; | ||
drop table evaluation cascade; | ||
|
||
drop table groundtruth; | ||
drop table groundtruth cascade; | ||
|
||
drop table prediction; | ||
drop table prediction cascade; | ||
|
||
drop table label; | ||
drop table label cascade; | ||
|
||
drop table annotation; | ||
drop table annotation cascade; | ||
|
||
drop table model; | ||
drop table model cascade; | ||
|
||
drop table datum; | ||
drop table datum cascade; | ||
|
||
drop table dataset; | ||
drop table dataset cascade; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters