lemmy/migrations/2024-11-02-161125_add_post_body_mention/down.sql

5 lines
177 B
SQL

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