Change Swiss VAT to 0% (#282)

This commit is contained in:
Fredrik Ringqvist
2022-06-27 15:08:32 +02:00
committed by GitHub
parent 68c5c40edc
commit 10438f2485
+7
View File
@@ -0,0 +1,7 @@
-- Change Switzerland VAT to 0%
UPDATE markets SET vat = 1 WHERE name = 'CH';
UPDATE "delivery-methods_prices" SET price = 35 WHERE territory = 'CH' AND currency = 'CHF'
AND method = (select id from "delivery-methods" where name = 'dhl');