Liquibase: How to change default postgresql schema
Solution 1:
You can try to change PG user account so that the right default schema is set at database connection time with something like:
alter role r in database b set search_path='s';
You can try to change PG user account so that the right default schema is set at database connection time with something like:
alter role r in database b set search_path='s';