I'm supposed to create a spatial database and have installed Postgres and added the PostGIS extension.
When I try to add a column of type public.geometry
it always gives an error message that
geometry type doesn't exist
I'm not familiar with Postgres, and I don't know what the solution can possibly be. I tried to Google it but found nothing.
Did you CREATE EXTENSION postgis;
? Check \dx
in psql
.
Did you put the PostGIS extension in some other schema? Check \dT *.geometry
in psql
.