12 lines
301 B
SQL
12 lines
301 B
SQL
-- indices
|
|
drop index if exists user_dex;
|
|
drop index if exists watch_dex;
|
|
drop index if exists w2wdex;
|
|
drop index if exists note_dex;
|
|
-- tables
|
|
drop table if exists watch_quest;
|
|
drop table if exists watch_notes;
|
|
drop table if exists follows;
|
|
drop table if exists users;
|
|
drop table if exists watches;
|
|
|