mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
13 lines
313 B
PL/PgSQL
Executable file
13 lines
313 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: user_feed_and_friends
|
|
-- Description: user feed and user friends
|
|
|
|
BEGIN;
|
|
|
|
DROP POLICY delete_user_friends ON omnivore.user_friends;
|
|
DROP POLICY create_user_friends ON omnivore.user_friends;
|
|
DROP POLICY read_user_friends ON omnivore.user_friends;
|
|
|
|
DROP TABLE omnivore.user_friends;
|
|
|
|
COMMIT;
|