10 lines
128 B
PL/PgSQL
10 lines
128 B
PL/PgSQL
-- Type: UNDO
|
|
-- Name: reactions
|
|
-- Description: Remove omnivore.reaction table
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.reaction;
|
|
|
|
COMMIT;
|