Files
Rikard BartholfandGitHub ddcbd0afb0 Archive old migrations (#426)
* Archive old migrations

* Fix invalid placement of migrations
2024-10-17 11:19:12 +02:00

6 lines
232 B
SQL

-- 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';