9 lines
207 B
SQL
9 lines
207 B
SQL
-- 1523064177 UP add-reminders
|
|
CREATE TABLE reminders
|
|
(
|
|
id serial primary key,
|
|
vendor_id integer,
|
|
scheduled timestamp with time zone,
|
|
sent timestamp with time zone
|
|
);
|