7 lines
208 B
SQL
7 lines
208 B
SQL
-- P5-6104 Delete text tags for RU,LT,sv-FI
|
|
|
|
DELETE FROM "i18n-texts_data" WHERE
|
|
(territory = 'FI' and language = 'sv')
|
|
or (territory = 'LT' and language = 'lt')
|
|
or (territory = 'RU' and language = 'ru');
|