We just upgraded our Postgres installation from 9.1.6 to 9.3.9. We have a nightly process that copies a database from a partner and restores it on our server. There are geometry columns in that database.
I installed PostGIS through StackBuilder and I enabled the extension using
CREATE EXTENSION PostGIS
I verified that it was installed using
SELECT PostGIS_full_version()
But I am getting errors when restoring the table that type 'geometry' does not exist.
Thanks in advance!