10 lines
191 B
PL/PgSQL
Executable File
10 lines
191 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_settings_column_to_integrations
|
|
-- Description: Add settings column to integrations table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.integrations DROP COLUMN settings;
|
|
|
|
COMMIT;
|