12 lines
303 B
SQL
12 lines
303 B
SQL
-- indices
|
|
drop index if exists witch_dex;
|
|
drop index if exists watch_dex;
|
|
drop index if exists ww_dex;
|
|
drop index if exists note_dex;
|
|
-- tables
|
|
drop table if exists witch_watch;
|
|
drop table if exists watch_notes;
|
|
drop table if exists covens;
|
|
drop table if exists witches;
|
|
drop table if exists watches;
|
|
|