Hello everyone!
In a fresh installation of openmaint, I have a db called openmaint where all tables reside.
However, for every new class I make (using the web interface as an administrator), I have problems... because the new tables for those classes are assigned to "gis" Schema and to "alfresco" as Owner. The problems disappear as soon as I manually ALTER TABLE and set schema "public" and set owner "postgres".
How can I permanently fix this, so all new classes I create using openmaint web interface will be correctly stored and used???
Thank you,
George
Maybe you’ve changed the Postgres “search_path” parameter.
You can try with the SQL command: "set search_path = “$user”, public, gis;"
CMDBuild Team