Harmonize enabled flags for flyway and liquibase

This commit is contained in:
Dave Syer
2014-05-01 22:21:35 +01:00
parent 2cd7b13096
commit 799f9edb0b
9 changed files with 66 additions and 33 deletions

View File

@@ -159,18 +159,19 @@ content into your application; rather pick only the properties that you need.
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
flyway.locations=classpath:db/migrations # locations of migrations scripts
flyway.schemas= # schemas to update
flyway.initVersion= 1 # version to start migration
flyway.prefix=V
flyway.suffix=.sql
flyway.enabled=true
# LIQUIBASE ({sc-spring-boot-autoconfigure}/liquibase/LiquibaseProperties.{sc-ext}[LiquibaseProperties])
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
liquibase.enabled=true
# JMX
spring.jmx.enabled=true # Expose MBeans from Spring