added reminder scheduling and sending.

This commit is contained in:
Bryce Covert
2018-04-07 08:36:59 -07:00
parent 982d5ade58
commit a2c1273843
5 changed files with 104 additions and 17 deletions

View File

@@ -3,6 +3,6 @@ CREATE TABLE reminders
(
id serial primary key,
vendor_id integer,
scheduled date,
sent date
scheduled timestamp with time zone,
sent timestamp with time zone
);