10 lines
131 B
PL/PgSQL
Executable File
10 lines
131 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: highlights
|
|
-- Description: Create omnivore.highlight table
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.highlight;
|
|
|
|
COMMIT;
|