diff --git a/migrations/000.016.sql b/migrations/000.016.sql new file mode 100644 index 0000000..84dbb58 --- /dev/null +++ b/migrations/000.016.sql @@ -0,0 +1,5 @@ +-- 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'; \ No newline at end of file