mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
196 B
PL/PgSQL
Executable file
11 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;
|