P5-1372 Add entry for PL in i18n-currencies_territories

This commit is contained in:
Martin
2017-05-16 17:56:09 +02:00
parent 739029cebc
commit c9ed945147
+9
View File
@@ -0,0 +1,9 @@
-- P5-1372
INSERT INTO "i18n-currencies_territories" (territory, currency)
SELECT 'PL', 'PLN'
WHERE NOT EXISTS (
SELECT NULL
FROM "i18n-currencies_territories"
WHERE territory = 'PL'
AND currency = 'PLN'
);