Files
omnivore/packages/db/migrations/0078.undo.grant_update_rls_on_labels.sql
2022-03-30 11:34:26 -07:00

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;