Files
omnivore/packages/db/migrations/0004.undo.user_friends.sql
2022-02-11 09:24:33 -08:00

14 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;