alibaba / intelligent-test-platform

intelligent-test-platform
Apache License 2.0
463 stars 161 forks source link

使用flyway管理数据库版本 #21

Open ykstudy opened 4 years ago

ykstudy commented 4 years ago

错误信息: Invocation of init method failed; nested exception is org.flywaydb.core.api.FlywayException: Found non-empty schema(s) markov_demo but no schema history table. Use baseline() or set baselineOnMigrate to true to initialize the schema history table.

修改意见:

application.properties

spring.flyway.default-schema=markov_demo
spring.flyway.locations=classpath:db/migration

修改为

spring.flyway.default-schema=markov_demo
spring.flyway.locations=classpath:db/migration
spring.flyway.baseline-on-migrate=true