12 lines
196 B
PL/PgSQL
Executable File
12 lines
196 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: integrations
|
|
-- Description: Create integrations table
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE IF EXISTS omnivore.integrations;
|
|
|
|
DROP TYPE IF EXISTS omnivore.integration_type CASCADE;
|
|
|
|
COMMIT;
|