mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-10 20:15:56 +00:00
5 lines
194 B
SQL
5 lines
194 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;
|