Add "VATCode" and "TotalVAT" fields to Directo

#623
This commit is contained in:
Artur Beljajev 2018-03-14 14:48:20 +02:00
parent 1107dc67b8
commit 169c67839e
5 changed files with 34 additions and 3 deletions

View file

@ -1037,7 +1037,8 @@ CREATE TABLE invoices (
number integer,
cancelled_at timestamp without time zone,
total numeric(10,2) NOT NULL,
in_directo boolean DEFAULT false
in_directo boolean DEFAULT false,
buyer_vat_no character varying
);
@ -4718,3 +4719,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180313090437');
INSERT INTO schema_migrations (version) VALUES ('20180313124751');
INSERT INTO schema_migrations (version) VALUES ('20180314122722');