I Work with Postgresql 9.2 and I try to make Postgis 2.x extension for two schemas
My code is
create extension postgis schema public
it is working but I want to create extension for two schemas e.g public,second ...
Can anibody help me?
I Work with Postgresql 9.2 and I try to make Postgis 2.x extension for two schemas
My code is
create extension postgis schema public
it is working but I want to create extension for two schemas e.g public,second ...
Can anibody help me?
According to http://www.postgresql.org/docs/9.2/static/sql-createextension.html
Extension itself is not considered to be within any schema, but it can save objects within specified schema. Specifying more than one schema is an unrealizable.