lemmy/migrations/2024-12-10-193418_add_inbox_combined_table/down.sql
2024-12-11 22:22:55 -05:00

6 lines
195 B
SQL

-- Rename the person_mention table to person_comment_mention
ALTER TABLE person_comment_mention RENAME TO person_mention;
-- Drop the new tables
DROP TABLE person_post_mention, inbox_combined;