6 lines
414 B
SQL
6 lines
414 B
SQL
-- 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'); |