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

11 lines
183 B
PL/PgSQL
Executable File

-- Type: DO
-- Name: add_task_name_to_reminders
-- Description: Add task_name field to reminders table
BEGIN;
ALTER TABLE omnivore.reminders
ADD column task_name text;
COMMIT;