Liquibase creates log tables with user schema

When implementing liquibase on Sql Server. Below tables are created on USER schema not with DBO schema. Not sure how to fix this.

AMAR.DATABASECHANGELOG

AMAR.DATABASECHANGELOGLOCK

It shoule be

DBO.DATABASECHANGELOG

DBO.DATABASECHANGELOGLOCK

I don’t have any issues on creating table. It always creates on DBO schema. I’m using integratedSecurity and Liquibase version is 3.4.2

I’m not sure and it sounds more like a general SQL Server user permissions issue you might get good answers googling with those keywords. However for liquibase it may help to simply generate the SQL it produces, log in with that user and then you can validate the owner of the table, make adjustments and test.