mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 20:54:48 -04:00
8 lines
123 B
SQL
8 lines
123 B
SQL
-- Up
|
|
|
|
UPDATE translations SET status = 2 WHERE status = 1;
|
|
|
|
-- Down
|
|
|
|
UPDATE translations SET status = 1 WHERE status = 2;
|