10 lines
185 B
PL/PgSQL
Executable File
10 lines
185 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: grant_update_permission_on_labels
|
|
-- Description: Add the update permission on labels
|
|
|
|
BEGIN;
|
|
|
|
REVOKE UPDATE ON omnivore.link_labels FROM omnivore_user;
|
|
|
|
COMMIT;
|