Starting the app Duplicate DATABASECHANGELOG

After starting my application it created both DATABASECHANGELOG and LOCK but if i restart it i get this?

Anything i’m doing wrong?

SAP DBTech JDBC: [288] (at 13): cannot use duplicate table name: DATABASECHANGELOG: line 1 col 14 (at pos 13)

Please share the properties file. This seems weird, but is this database officially supported by liquibase?

I do not have a liquibase.properties i’m running it via my application.

HA HA i got it working, it seems that i had to overwrite the getConnectionSchemaName and getConnectionSchemaNameCallStatement with
return new RawCallStatement(“SELECT CURRENT_SCHEMA “current schema” FROM DUMMY”);

seems to work now