From f67a78d2b36d44899849b8426e3d52f922fd9eec Mon Sep 17 00:00:00 2001 From: fredrikphotowall <35255659+fredrikphotowall@users.noreply.github.com> Date: Wed, 28 Oct 2020 13:17:00 +0100 Subject: [PATCH] P5-6104 Delete RU,LT,sv-FI text tags (#134) --- migrations/000.251.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/000.251.sql diff --git a/migrations/000.251.sql b/migrations/000.251.sql new file mode 100644 index 0000000..52b3f77 --- /dev/null +++ b/migrations/000.251.sql @@ -0,0 +1,6 @@ +-- 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');