reorder table drops to respect fk constraints

This commit is contained in:
Joe Ardent 2024-01-27 13:42:40 -08:00
parent fab52203e5
commit d1e2e95248
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
drop table if exists users;
drop table if exists invites; drop table if exists invites;
drop table if exists users; -- must be last

View File

@ -1,3 +1,3 @@
drop table if exists watches;
drop table if exists watch_quests; drop table if exists watch_quests;
drop table if exists watch_notes; drop table if exists watch_notes;
drop table if exists watches; -- must be last