10 lines
177 B
PL/PgSQL
Executable File
10 lines
177 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: grant_update_rls_on_labels
|
|
-- Description: Add RLS update permission to the labels table
|
|
|
|
BEGIN;
|
|
|
|
DROP POLICY update_labels on omnivore.labels ;
|
|
|
|
COMMIT;
|