Files
integreat/migrator/migrations/1523064177-UP-add-reminders.sql
2018-04-07 08:36:59 -07:00

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
);