Set standard freight to €0 for India (#352)

* Set standard freight to €0 for India

* Fix numbering of migration

* Set price for Express in India

* Set price for Express in India
This commit is contained in:
Rikard Bartholf
2023-10-10 15:35:42 +02:00
committed by GitHub
parent 246bde7175
commit 1e2d28cce2
+11
View File
@@ -0,0 +1,11 @@
UPDATE "delivery-methods_prices"
SET price = 0
WHERE currency = 'EUR'
AND territory = 'IN'
AND method = (SELECT id FROM "delivery-methods" WHERE name = 'fedexStandardWorld');
UPDATE "delivery-methods_prices"
SET price = 7
WHERE currency = 'EUR'
AND territory = 'IN'
AND method = (SELECT id FROM "delivery-methods" WHERE name = 'fedexExpressWorld');