added missing fields

This commit is contained in:
roshelrao
2021-07-08 15:03:32 +05:30
parent 1332448d72
commit 5416bdb840
8 changed files with 149 additions and 28 deletions

View File

@@ -27,12 +27,14 @@ create table Invoices
vat decimal(10,2) default 0.00 null,
vatRate decimal(10,2) default 0.00 null,
issuedDate datetime null,
dueDate datetime null,
paidDate datetime null,
created datetime null,
updated datetime null,
status enum('Pending', 'Paid', 'Processing', 'Draft', 'Sent', 'Canceled') collate utf8_unicode_ci default 'Pending' null,
acceptPayments tinyint default 0 null,
buyerEmail varchar(125) charset utf8 null,
items text charset utf8 null,
constraint invoiceId
unique (invoiceId)
)