Infotechie
Infotechie

Reputation: 1653

setting liquibase.changelogSchemaName property in spring boot

I am facing issue while setting the changelogSchemaName for liquibase in spring boot.

I am setting it like below - spring.datasource.datsourcename.liquibase.changelogSchemaName =

But it seems spring boot is not reading this property.

How can this property be set. My problem is I want to use separate schema for changelog tables which i s different from actual schema.

Upvotes: 0

Views: 954

Answers (1)

Mike Olivas
Mike Olivas

Reputation: 313

You can use spring.liquibase.liquibase-schema= in your application.properties file for the springboot app.

Upvotes: 1

Related Questions