mirror of
https://github.com/kristoferssolo/echoes-of-ascension.git
synced 2025-10-21 18:50:34 +00:00
12 lines
243 B
SQL
12 lines
243 B
SQL
-- Add down migration script here
|
|
-- Drop indexes first
|
|
DROP INDEX IF EXISTS idx_scores_user_score;
|
|
|
|
DROP INDEX IF EXISTS idx_users_login;
|
|
|
|
-- Drop tables in reverse order of creation
|
|
DROP TABLE IF EXISTS scores;
|
|
|
|
DROP TABLE IF EXISTS users;
|
|
|