diff --git a/migrations/000.381.sql b/migrations/000.381.sql new file mode 100644 index 0000000..c4fc315 --- /dev/null +++ b/migrations/000.381.sql @@ -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'); +