This commit is contained in:
Bryce Covert
2018-04-05 18:17:45 -07:00
parent 7fc02c1d04
commit 33cfc395de
10 changed files with 230 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
-- 1522973754 DOWN create-vendors
drop table vendors;

View File

@@ -0,0 +1,12 @@
-- 1522973754 UP create-vendors
CREATE TABLE public.vendors (
id serial PRIMARY KEY,
name character varying(255),
data text,
email character varying(255),
invoice_reminder_schedule character varying(255)
);
INSERT into vendors (name, data, email, invoice_reminder_schedule) values ('CINTAS', '{}', 'ses@brycecovertoperations.com', 'Weekly');