mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-08 23:14:43 -04:00
12 lines
245 B
SQL
12 lines
245 B
SQL
-- Up
|
|
|
|
UPDATE "profiles"
|
|
SET "flags" = replace("flags", 'questioning', 'Questioning')
|
|
WHERE "flags" LIKE '%questioning%'
|
|
|
|
-- Down
|
|
|
|
UPDATE "profiles"
|
|
SET "flags" = replace("flags", 'Questioning', 'questioning')
|
|
WHERE "flags" LIKE '%Questioning%'
|