mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-11 20:45:53 +00:00
6 lines
177 B
MySQL
6 lines
177 B
MySQL
|
-- 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;
|