From a7896fe9155dd1e6a5d8d4815bfd1366f31ee7f0 Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 16 Mar 2021 12:50:36 +0100 Subject: [PATCH] fix null error in latest migration --- migrations/000.313.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/migrations/000.313.sql b/migrations/000.313.sql index bc63abe..b516bbe 100644 --- a/migrations/000.313.sql +++ b/migrations/000.313.sql @@ -1,7 +1,7 @@ -- P5-6900: add brazil delivery country insert into "delivery-methods_prices" (method, option, option_value, currency, price, territory) values - (3, null, null, 'EUR', 0, 'BR'), --no delivery - (10, null, null, 'EUR', 56, 'BR'), -- dhl - (11, null, null, 'EUR', 0, 'BR'), -- samples - (16, null, null, 'EUR', 49, 'BR'); -- dhl economy world + (3, '', '', 'EUR', 0, 'BR'), --no delivery + (10, '', '', 'EUR', 56, 'BR'), -- dhl + (11, '', '', 'EUR', 0, 'BR'), -- samples + (16, '', '', 'EUR', 49, 'BR'); -- dhl economy world