10 lines
171 B
PL/PgSQL
Executable File
10 lines
171 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: grant_delete_rls_on_users
|
|
-- Description: Add RLS delete permission to the users table
|
|
|
|
BEGIN;
|
|
|
|
DROP POLICY delete_users ON omnivore.user;
|
|
|
|
COMMIT;
|