Replace individual Rust migration modules with a define_sql_migrations macro that reads up/down SQL files via include_str!. Consolidate all legacy single-file SQL into per-table directories and add full schema migration coverage for 90+ tables.
7 lines
275 B
SQL
7 lines
275 B
SQL
DROP INDEX IF EXISTS idx_room_message_model_id;
|
|
DROP INDEX IF EXISTS idx_room_message_content_tsv;
|
|
DROP INDEX IF EXISTS idx_room_message_send_at;
|
|
DROP INDEX IF EXISTS idx_room_message_thread;
|
|
DROP INDEX IF EXISTS idx_room_message_room_seq;
|
|
DROP TABLE IF EXISTS room_message;
|