Files
omnivore/packages/db/migrations/0077.do.grant_update_permission_on_labels.sql
Jackson Harper 15cf0d07e9 Allow UPDATE on the labels table
labels are updated when users change their colour or description.
2022-03-30 10:56:01 -07:00

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;