added support

This commit is contained in:
Bryce Covert
2018-04-30 21:20:29 -07:00
parent 5ab67c5887
commit 9b95b5b5f2
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
-- 1523724426 DOWN add-vendor-client-relationship
drop table vendors_companies;

View File

@@ -0,0 +1,8 @@
-- 1523724426 UP add-vendor-client-relationship
CREATE TABLE vendors_companies (
id serial primary key,
vendor_id int references vendors(id),
company_id int references companies(id),
account_id varchar(255),
data text
);