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

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

8 lines
246 B
SQL

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