10 lines
212 B
PL/PgSQL
Executable File
10 lines
212 B
PL/PgSQL
Executable File
-- Type: DO
|
|
-- Name: grant_permissions_to_integrations
|
|
-- Description: Grant DB permissions to integrations table
|
|
|
|
BEGIN;
|
|
|
|
GRANT SELECT, INSERT, UPDATE, DELETE ON omnivore.integrations TO omnivore_user;
|
|
|
|
COMMIT;
|