I have setup a postgres database(version 9.1) and trying to create a table capable of storing st_geometry with the following query :
CREATE TABLE sensitive_areas (area_id integer, name varchar(128), zone st_geometry);
But I am getting the error as follows :
ERROR: type "st_geometry" does not exist
Do I need to configure my postgres installation further to enable geometry data type .