vendors.
This commit is contained in:
2
migrator/migrations/1522973754-DOWN-create-vendors.sql
Normal file
2
migrator/migrations/1522973754-DOWN-create-vendors.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- 1522973754 DOWN create-vendors
|
||||
drop table vendors;
|
||||
12
migrator/migrations/1522973754-UP-create-vendors.sql
Normal file
12
migrator/migrations/1522973754-UP-create-vendors.sql
Normal 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');
|
||||
Reference in New Issue
Block a user