omnivore/packages/db/migrations/0146.undo.following.sql

20 lines
421 B
MySQL
Raw Permalink Normal View History

2023-11-03 06:53:46 +00:00
-- Type: UNDO
-- Name: following
-- Description: Create tables for following feature
BEGIN;
DROP policy library_item_admin_policy ON omnivore.library_item;
2023-11-03 06:53:46 +00:00
ALTER TABLE omnivore.library_item
DROP COLUMN links,
DROP COLUMN preview_content,
2023-11-10 09:34:46 +00:00
DROP COLUMN preview_content_type,
DROP COLUMN folder;
2023-11-03 06:53:46 +00:00
ALTER TABLE omnivore.subscriptions
2023-11-09 14:39:51 +00:00
DROP COLUMN is_private,
2023-11-09 11:00:57 +00:00
DROP COLUMN auto_add_to_library;
2023-11-03 06:53:46 +00:00
COMMIT;