通常flyway在/ sql中查找查询。
但是我会给出一些不同的位置..那就是c:/ User / Queries。
如何配置flyway以查看diff文件夹?
答案 0 :(得分:8)
使用flyway.locations
属性。
示例:flyway.locations=filesystem:c:/User/Queries
答案 1 :(得分:1)
在命令行参数中传递它。
有关Flyway信息
flyway info -locations=filesystem:./migration -user=username -password=password -url=jdbc:postgresql://localhost:portNo/dBName
用于Flyway迁移
flyway migrate -locations=filesystem:./migration -user=username -password=password -url=jdbc:postgresql://localhost:portNo/dBName