Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用具有相同生命周期的多个模式的 Flyway 进行数据库迁移,当我使用 flyway:clean 时,如何实现它们都变得干净?
对此的支持现已添加到 1.3.1 版本中!
使用您希望管理的模式列表设置flyway.schemas属性,一切顺利!
例子:
flyway.schemas=schema1,schema2,schema3
mvn flyway:clean 现在将清除所有 3 个模式。