From 333e4774c87a1cbfcb0c9c114c394d7f1dadf5b5 Mon Sep 17 00:00:00 2001 From: Fredrik Ringqvist <35255659+fredrikphotowall@users.noreply.github.com> Date: Thu, 30 Jun 2022 14:54:59 +0200 Subject: [PATCH] Change Switzerland express delivery price 8 CHF (#284) --- migrations/000.383.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.383.sql diff --git a/migrations/000.383.sql b/migrations/000.383.sql new file mode 100644 index 0000000..b947ebd --- /dev/null +++ b/migrations/000.383.sql @@ -0,0 +1,5 @@ +-- Change Switzerland Express shipping price to 8 CHF + +UPDATE "delivery-methods_prices" SET price = 8 WHERE territory = 'CH' AND currency = 'CHF' + AND method = (select id from "delivery-methods" where name = 'dhl'); +