Adding vendor import stuff.

This commit is contained in:
Bryce Covert
2018-05-10 17:32:22 -07:00
parent df3755d099
commit 798bfae78a
9 changed files with 173 additions and 32 deletions

View File

@@ -0,0 +1,3 @@
-- 1525464770 DOWN change-amount-to-number
alter table invoices drop column total;
alter table invoices add column total varchar(255);

View File

@@ -0,0 +1,3 @@
-- 1525464770 UP change-amount-to-number
alter table invoices drop column total;
alter table invoices add column total decimal;