Files
omnivore/packages/db/migrations/0146.undo.following.sql
2023-11-08 18:16:48 +08:00

24 lines
488 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: following
-- Description: Create tables for following feature
BEGIN;
DROP TABLE omnivore.feed;
ALTER TABLE omnivore.library_item
DROP COLUMN hidden_at,
DROP COLUMN shared_at,
DROP COLUMN shared_by,
DROP COLUMN links,
DROP COLUMN preview_content,
DROP COLUMN seen_at,
DROP COLUMN shared_source,
DROP COLUMN is_in_library;
ALTER TABLE omnivore.subscriptions
DROP COLUMN is_public,
DROP COLUMN is_fetching_content;
COMMIT;