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

11 lines
181 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: add_task_name_to_reminders
-- Description: Add task_name field to reminders table
BEGIN;
ALTER TABLE omnivore.reminders
DROP COLUMN task_name;
COMMIT;