2022-08-01 11:34:19 +00:00
|
|
|
-- Type: UNDO
|
|
|
|
|
-- Name: integrations
|
|
|
|
|
-- Description: Create integrations table
|
|
|
|
|
|
|
|
|
|
BEGIN;
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS omnivore.integrations;
|
|
|
|
|
|
2022-08-01 13:53:39 +00:00
|
|
|
DROP TYPE IF EXISTS omnivore.integration_type CASCADE;
|
|
|
|
|
|
2022-08-01 11:34:19 +00:00
|
|
|
COMMIT;
|