Files
database/migrations/000.273.sql
T
5bdee0c0da P5-6459 update italian vat to 22 percent (#160)
* update italian vat to 22 percent

* P5-6459 update i18n-territories

Co-authored-by: Fredrik Ringqvist <fredrik.ringqvist@photowall.se>
2020-12-18 09:34:49 +01:00

6 lines
230 B
SQL

-- P5-6459 - update VAT in italy to 22 percent
UPDATE "delivery-methods_prices" SET price = (7 / 1.22) WHERE method = 14 and territory = 'IT' and currency = 'EUR';
UPDATE "i18n-territories" SET vat = 1.22 WHERE iso2char = 'IT';