diff --git a/migrations/000.282.sql b/migrations/000.282.sql new file mode 100644 index 0000000..f144189 --- /dev/null +++ b/migrations/000.282.sql @@ -0,0 +1,5 @@ +-- P5-6459 - update VAT in germany to 19 percent + +UPDATE "delivery-methods_prices" SET price = (7 / 1.19) WHERE method = 14 and territory = 'DE' and currency = 'EUR'; + +UPDATE "i18n-territories" SET vat = 1.19 WHERE iso2char = 'DE';