6 lines
203 B
SQL
6 lines
203 B
SQL
-- P5-6415 UK delivery method changes
|
|
|
|
-- Replace current premium UK method DhlExpress with the one used for USA
|
|
UPDATE "delivery-methods_prices" SET method = 10 where method = 14 and territory = 'GB';
|
|
|