10 lines
152 B
PL/PgSQL
Executable File
10 lines
152 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: create_export_table
|
|
-- Description: Create a table to store the export information
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.export;
|
|
|
|
COMMIT;
|