mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add score to library_item table
This commit is contained in:
parent
25a984dc6a
commit
80841bf9af
2 changed files with 4 additions and 2 deletions
|
|
@ -83,6 +83,7 @@ GRANT SELECT, INSERT, UPDATE ON omnivore.public_item_interactions TO omnivore_us
|
|||
ALTER TABLE omnivore.library_item
|
||||
ADD COLUMN seen_at timestamptz,
|
||||
ADD COLUMN digested_at timestamptz,
|
||||
ADD COLUMN topic TEXT;
|
||||
ADD COLUMN topic TEXT,
|
||||
ADD COLUMN score FLOAT;
|
||||
|
||||
COMMIT;
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ DROP TABLE omnivore.public_item_source;
|
|||
ALTER TABLE omnivore.library_item
|
||||
DROP COLUMN seen_at,
|
||||
DROP COLUMN digested_at,
|
||||
DROP COLUMN topic;
|
||||
DROP COLUMN topic,
|
||||
DROP COLUMN score;
|
||||
|
||||
COMMIT;
|
||||
|
|
|
|||
Loading…
Reference in a new issue