From b31376e0789295a32ba67429f326cb9177d0e046 Mon Sep 17 00:00:00 2001 From: Fredrik Ringqvist <35255659+fredrikphotowall@users.noreply.github.com> Date: Thu, 4 May 2023 10:38:14 +0200 Subject: [PATCH] Use FedEx Economy for rest of EU (#323) --- migrations/000.414.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/000.414.sql diff --git a/migrations/000.414.sql b/migrations/000.414.sql new file mode 100644 index 0000000..11d8fad --- /dev/null +++ b/migrations/000.414.sql @@ -0,0 +1,6 @@ +-- Replace DHL Economy in remaining EU countries (with own PW markets) with Fedex Standard +-- FR already done. Also skip DK,SE,FI, they have Bring. +UPDATE "delivery-methods_prices" +SET method = (select id from "delivery-methods" where name = 'fedexStandardEU') +WHERE method = (select id from "delivery-methods" where name = 'dhlEconomyEU') +AND territory in ('AT','BE','DE','EE','ES','IE','IT','LU','NL','PL','RO'); \ No newline at end of file