10 lines
118 B
PL/PgSQL
Executable File
10 lines
118 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: reminders
|
|
-- Description: Add reminders table
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.reminders;
|
|
|
|
COMMIT;
|