mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #4077 from omnivore-app/fix/migration-error
create ltree extension if not exists
This commit is contained in:
commit
da55dd29c2
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ CREATE INDEX public_item_interaction_public_item_id_idx ON omnivore.public_item_
|
|||
CREATE TRIGGER update_public_item_interactions_modtime BEFORE UPDATE ON omnivore.public_item_interactions FOR EACH ROW EXECUTE PROCEDURE update_updated_at_column();
|
||||
GRANT SELECT, INSERT, UPDATE ON omnivore.public_item_interactions TO omnivore_user;
|
||||
|
||||
CREATE EXTENSION LTREE;
|
||||
CREATE EXTENSION IF NOT EXISTS LTREE;
|
||||
|
||||
ALTER TABLE omnivore.library_item
|
||||
ADD COLUMN seen_at TIMESTAMPTZ,
|
||||
|
|
|
|||
Loading…
Reference in a new issue