10 lines
180 B
PL/PgSQL
Executable File
10 lines
180 B
PL/PgSQL
Executable File
-- Type: DO
|
|
-- Name: grant_update_permission_on_labels
|
|
-- Description: Add the update permission on labels
|
|
|
|
BEGIN;
|
|
|
|
GRANT UPDATE ON omnivore.link_labels TO omnivore_user;
|
|
|
|
COMMIT;
|