From e8523e373f2aeab7aee3072070832e3b5900ecd7 Mon Sep 17 00:00:00 2001 From: jordi fita mas Date: Wed, 1 Feb 2023 14:32:46 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9CFix=E2=80=9D=20the=20province=20for=20?= =?UTF-8?q?the=20demo=E2=80=99s=20company=20tax=20details?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It does not matter for the demo, but i did not like the error. --- demo/demo.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/demo.sql b/demo/demo.sql index d3311c5..af59771 100644 --- a/demo/demo.sql +++ b/demo/demo.sql @@ -8,7 +8,7 @@ values (1, 'demo@numerus', 'Demo User', 'demo', 'invoicer') ; insert into company (company_id, business_name, vatin, trade_name, phone, email, web, address, city, province, postal_code, country_code, currency_code) -values (1, 'Juli Verd', 'ES40404040D', 'Pesebre', parse_packed_phone_number('972 50 60 70', 'ES'), 'info@numerus.cat', 'https://numerus.cat/', 'C/ de l’Hort', 'Castelló d’Empúries', 'Alt Empordà', '17486', 'ES', 'EUR'); +values (1, 'Juli Verd', 'ES40404040D', 'Pesebre', parse_packed_phone_number('972 50 60 70', 'ES'), 'info@numerus.cat', 'https://numerus.cat/', 'C/ de l’Hort', 'Castelló d’Empúries', 'Girona', '17486', 'ES', 'EUR'); insert into company_user (company_id, user_id) values (1, 1)