0

According to https://dzone.com/articles/installing-the-postgres-ltree-extension, ltree is installed and enabled on my computer. But when I try to make a table with a column of type ltree in Postbird, it says 'type "ltree" does not exist'. This makes no sense. Please help.

eric_heim
  • 31
  • 1
  • 6

1 Answers1

0

Only execute this command in psql or some postgresql's sql client:

CREATE EXTENSION ltree;
bencarsal
  • 21
  • 4