Files
omnivore/packages/db/migrations/0058.do.add_remind_at_to_reminders.sql
2022-02-11 09:24:33 -08:00

13 lines
282 B
PL/PgSQL
Executable File

-- Type: DO
-- Name: add_remind_at_to_reminders
-- Description: Add remind_at field to reminders table
BEGIN;
CREATE TYPE remind_at AS ENUM ('TONIGHT', 'TOMORROW', 'THIS_WEEKEND', 'NEXT_WEEK');
ALTER TABLE omnivore.reminders
ADD COLUMN remind_at remind_at NOT NULL;
COMMIT;