Using DB migrations using Flyway with multiple schemas which have the same lifecycle, how can I achieve that they all get clean when I use flyway:clean?

link|improve this question
1  
Created an issue for that: code.google.com/p/flyway/issues/detail?id=106 – longliveenduro Mar 18 '11 at 10:20
feedback

1 Answer

Support for this has now been added to the 1.3.1 release!

Set the flyway.schemas property with the list of schemas you wish to manage, and your good to go!

Example:

flyway.schemas=schema1,schema2,schema3

mvn flyway:clean will now clean all 3 schemas.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.