mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
22 lines
457 B
PL/PgSQL
Executable file
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;
|