I have an existing project which uses liquibase to manage Oracle, MySQL and SQLServer versions of the same database structure and I am adding Postgres support. I need to create the Postgres database under a specified schema (i.e. not the default public schema) and need the databasechangelog table to also be in that schema.
I realise that for Postgres I can achieve this by specifying the "defaultSchemaName" parameter in the updateDatabase target of my ant file, but as this is not currently set, I don't want to introduce any side-effects on the other RDBMs, which are managed from the same ant file. Does anyone know what the default value of this parameter is so that I can force the other RDBMs to use that, thus making my change backwards compatible?