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

22 lines
457 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 is_in_library;
ALTER TABLE omnivore.subscriptions
DROP COLUMN is_public,
DROP COLUMN is_fetching_content;
COMMIT;