Postgis installation: type “geometry” does not exist

I had the same problem, but it was fixed by running following code

CREATE EXTENSION postgis;

In detail,

  1. open pgAdmin
  2. select (click) your database
  3. click “SQL” icon on the bar
  4. run “CREATE EXTENSION postgis;” code

Leave a Comment