mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
20 lines
418 B
PL/PgSQL
Executable file
20 lines
418 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: public_item
|
|
-- Description: Create a table for public items
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE omnivore.public_item_interactions;
|
|
DROP TABLE omnivore.public_item_stats;
|
|
DROP TABLE omnivore.public_item;
|
|
DROP TABLE omnivore.public_item_source;
|
|
|
|
ALTER TABLE omnivore.library_item
|
|
DROP COLUMN seen_at,
|
|
DROP COLUMN digested_at,
|
|
DROP COLUMN topic,
|
|
DROP COLUMN score;
|
|
|
|
DROP EXTENSION LTREE;
|
|
|
|
COMMIT;
|