10 lines
152 B
PL/PgSQL
Executable File
10 lines
152 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_remind_at_to_reminders
|
|
-- Description: Add remind_at field to reminders table
|
|
|
|
BEGIN;
|
|
|
|
DROP TYPE remind_at CASCADE;
|
|
|
|
COMMIT;
|