mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
15 lines
324 B
PL/PgSQL
Executable file
15 lines
324 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: add_status_to_reminders
|
|
-- Description: Add status, created_at, updated_at fields to the reminders table
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER reminders_modtime ON omnivore.reminders;
|
|
|
|
DROP TYPE reminder_status CASCADE;
|
|
|
|
ALTER TABLE omnivore.reminders
|
|
DROP COLUMN created_at,
|
|
DROP COLUMN updated_at;
|
|
|
|
COMMIT;
|