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:
@@ -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');
|
||||
Reference in New Issue
Block a user