Drop 'spring' from 'spring.[liquibase,flyway]'
This commit is contained in:
@@ -158,12 +158,19 @@ content into your application; rather pick only the properties that you need.
|
||||
spring.jpa.hibernate.naming-strategy= # naming classname
|
||||
spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embedded dbs
|
||||
|
||||
# FLYWAY ({sc-spring-boot-autoconfigure}/flyway/FlywayProperties.{sc-ext}[FlywayProperties])
|
||||
flyway.change-log=classpath:/db/changelog/db.changelog-master.yaml
|
||||
flyway.contexts= # runtime contexts to use
|
||||
flyway.default-schema= # default database schema to use
|
||||
flyway.drop-first=false
|
||||
flyway.should-run=true
|
||||
|
||||
# LIQUIBASE ({sc-spring-boot-autoconfigure}/liquibase/LiquibaseProperties.{sc-ext}[LiquibaseProperties])
|
||||
spring.liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
|
||||
spring.liquibase.contexts= # runtime contexts to use
|
||||
spring.liquibase.default-schema= # default database schema to use
|
||||
spring.liquibase.drop-first=false
|
||||
spring.liquibase.should-run=true
|
||||
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
|
||||
liquibase.contexts= # runtime contexts to use
|
||||
liquibase.default-schema= # default database schema to use
|
||||
liquibase.drop-first=false
|
||||
liquibase.should-run=true
|
||||
|
||||
# JMX
|
||||
spring.jmx.enabled=true # Expose MBeans from Spring
|
||||
|
||||
@@ -1117,7 +1117,7 @@ To automatically run Liquibase database migrations on startup, add the
|
||||
`spring-boot-starter-liquibase` to your classpath.
|
||||
|
||||
The master change log is by default read from `db/changelog/db.changelog-master.yaml` but
|
||||
can be set using `spring.liquibase.change-log`. See
|
||||
can be set using `liquibase.change-log`. See
|
||||
{sc-spring-boot-autoconfigure}/liquibase/LiquibaseProperties.{sc-ext}[`LiquibaseProperties`]
|
||||
for details of available settings like contexts, default schema etc.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user