Hi,
I’m using liquibase with spring boot and DB2.
To setup the defaultSchemaName I used the spring boot parameter
spring.liquibase.default-schema=…
my schema name was “myTestDB”.
With version 3.5.5 every thing worked fine. Some how the schema name was converted to uppercase characters.
Within my DB I got a schema named MYTESTDB.
With version 3.6.2 some thing changed. Liquibase did create a schema myTestDB. This is in my case a breaking change.
Can I some how influence this behavior?
Thanks in advanced
Jack