5 lines
335 B
SQL
5 lines
335 B
SQL
-- PW-462: set price to 0 for business packages in Norway, Denmark & Finland
|
|
|
|
update "delivery-methods_prices" set price = 0 where method = 9 and territory = 'NO';
|
|
update "delivery-methods_prices" set price = 0 where method = 9 and territory = 'FI';
|
|
update "delivery-methods_prices" set price = 0 where method = 9 and territory = 'DK'; |