From d30281c421796be63e791a3504a6428136afa1b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Erik=20=C3=95unapuu?= Date: Thu, 27 Feb 2020 11:59:46 +0200 Subject: [PATCH] Update structure.sql --- db/structure.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/db/structure.sql b/db/structure.sql index d694da536..9adad4a04 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -885,6 +885,7 @@ CREATE TABLE public.invoices ( in_directo boolean DEFAULT false, buyer_vat_no character varying, issue_date date NOT NULL, + e_invoice_sent_at timestamp without time zone, CONSTRAINT invoices_due_date_is_not_before_issue_date CHECK ((due_date >= issue_date)) ); @@ -4460,6 +4461,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20200113091254'), ('20200115102202'), ('20200130092113'), -('20200203143458'); +('20200203143458'), +('20200204103125');