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