Flyway 初始化失败:可以找到以下迁移脚本位置中的 none 个:- classpath:db / migrations
Flyway failed to initialize: none of the following migration scripts locations could be found: - classpath:db / migrations
我的 application.properties 中有以下配置,附件是类路径。
.
我错过了什么?
spring.jpa.hibernate.ddl-auto = validate
spring.jpa.properties.hibernate.format_sql=true
#spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
# Flyway
spring.flyway.baselineOnMigrate=true
spring.flyway.check-location=true
spring.flyway.locations=classpath:db/migrations
spring.flyway.schemas=public
spring.flyway.enabled=true
Flyway docs 使用 大写字母 V
为版本化迁移添加前缀。尝试将您的迁移从 v1_1__init.sql
重命名为 V1_1__init.sql
。
我的 application.properties 中有以下配置,附件是类路径。
我错过了什么?
spring.jpa.hibernate.ddl-auto = validate
spring.jpa.properties.hibernate.format_sql=true
#spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
# Flyway
spring.flyway.baselineOnMigrate=true
spring.flyway.check-location=true
spring.flyway.locations=classpath:db/migrations
spring.flyway.schemas=public
spring.flyway.enabled=true
Flyway docs 使用 大写字母 V
为版本化迁移添加前缀。尝试将您的迁移从 v1_1__init.sql
重命名为 V1_1__init.sql
。