Adjust Singapore delivery price after VAT change (#285)

This commit is contained in:
Fredrik Ringqvist
2022-07-07 23:13:35 +02:00
committed by GitHub
parent 333e4774c8
commit a661a0e210
+5
View File
@@ -0,0 +1,5 @@
-- Adjust Singapore delivery price to new VAT of 0%
-- VAT used to be 7%, so old delivery price was 7 USD / 1.07 = 6.5420560747663551. Change to 7 / 1.0 = 7
UPDATE "delivery-methods_prices" SET price = 7 WHERE territory = 'SG' AND currency = 'USD'
AND method = (select id from "delivery-methods" where name = 'dhl');