How to set the default schema of postgres?
Looks like the Phalcon always defines the public schema:
'database' => array(
'adapter' => 'Postgres',
'host' => 'localhost',
'username' => 'user',
'password' => 'password',
'dbname' => 'mydb',
'schema' => 'mySchema', // doesn't work <--- ERROR HERE
),