Adding reminders view
This commit is contained in:
2
migrator/migrations/1523064177-DOWN-add-reminders.sql
Normal file
2
migrator/migrations/1523064177-DOWN-add-reminders.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- 1523064177 DOWN add-reminders
|
||||
drop table reminders;
|
||||
8
migrator/migrations/1523064177-UP-add-reminders.sql
Normal file
8
migrator/migrations/1523064177-UP-add-reminders.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- 1523064177 UP add-reminders
|
||||
CREATE TABLE reminders
|
||||
(
|
||||
id serial primary key,
|
||||
vendor_id integer,
|
||||
scheduled date,
|
||||
sent date
|
||||
);
|
||||
Reference in New Issue
Block a user