10 lines
170 B
PL/PgSQL
Executable File
10 lines
170 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_rls_to_speech
|
|
-- Description: Add Row level security to speech table
|
|
|
|
BEGIN;
|
|
|
|
DROP POLICY IF EXISTS update_speech ON omnivore.speech;
|
|
|
|
COMMIT;
|