<dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>5.2.4</version> </dependency>
flyway: baseline-on-migrate: true locations: classpath:/db/migration
nested exception is org.flywaydb.core.api.FlywayException: Validate failed: Detected applied migration not resolved locallysql
这是由于经过flyway_schema_history
表对本地sql文件进行连续性验证的结果,关闭验证便可。api
flyway: baseline-on-migrate: true validate-on-migrate: false locations: classpath:/db/migration