mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
10 lines
204 B
SQL
10 lines
204 B
SQL
-- Up
|
|
|
|
UPDATE profiles
|
|
SET pronouns = REPLACE(REPLACE(pronouns, 'любые', 'any'),
|
|
-- urlencoded "любые"
|
|
'%\%D0\%BB\%D1\%8E\%D0\%B1\%D1\%8B\%D0\%B5%', 'any')
|
|
WHERE locale = 'ru';
|
|
|
|
-- Down
|