From 1e2d28cce205c327637ed421190cdb13ac0bc773 Mon Sep 17 00:00:00 2001 From: Rikard Bartholf Date: Tue, 10 Oct 2023 15:35:42 +0200 Subject: [PATCH] =?UTF-8?q?Set=20standard=20freight=20to=20=E2=82=AC0=20fo?= =?UTF-8?q?r=20India=20(#352)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Set standard freight to €0 for India * Fix numbering of migration * Set price for Express in India * Set price for Express in India --- migrations/000.440.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 migrations/000.440.sql diff --git a/migrations/000.440.sql b/migrations/000.440.sql new file mode 100644 index 0000000..5626f97 --- /dev/null +++ b/migrations/000.440.sql @@ -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');