omnivore/packages/db/migrations/0004.undo.user_friends.sql

14 lines
313 B
MySQL
Raw Normal View History

2022-02-11 17:24:33 +00:00
-- 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;