what2watch/migrations/20230426221940_init.down.sql

17 lines
485 B
MySQL
Raw Normal View History

2023-04-27 00:08:49 +00:00
-- indices
2023-07-09 05:00:26 +00:00
drop index if exists user_username_dex;
drop index if exists user_email_dex;
drop index if exists watch_title_dex;
drop index if exists witch_added_by_dex;
drop index if exists quests_user_dex;
drop index if exists quests_watch_dex;
drop index if exists note_user_dex;
drop index if exists note_watch_dex;
2023-04-27 00:08:49 +00:00
-- tables
2023-07-09 05:00:26 +00:00
drop table if exists watch_quests;
drop table if exists watch_notes;
2023-07-09 05:00:26 +00:00
drop table if exists follows;
2023-07-09 04:21:12 +00:00
drop table if exists users;
2023-04-27 00:08:49 +00:00
drop table if exists watches;