2024-05-21 07:37:59 +00:00
|
|
|
-- 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;
|
|
|
|
|
|
2024-05-23 14:07:19 +00:00
|
|
|
ALTER TABLE omnivore.library_item
|
|
|
|
|
DROP COLUMN seen_at,
|
2024-05-24 06:52:21 +00:00
|
|
|
DROP COLUMN digested_at,
|
2024-05-27 03:11:05 +00:00
|
|
|
DROP COLUMN topic,
|
|
|
|
|
DROP COLUMN score;
|
2024-05-23 07:48:30 +00:00
|
|
|
|
2024-05-28 06:45:33 +00:00
|
|
|
DROP EXTENSION LTREE;
|
|
|
|
|
|
2024-05-21 07:37:59 +00:00
|
|
|
COMMIT;
|