I'd like to detect the condition where the user's database is newer than the maximum version available to migration (for example, the user downgraded to an older version of the software). When I run the following:

System.out.println("source: " + flyway.status().getVersion().toString());
System.out.println("target: " + flyway.getTarget().toString());

I get the following output:

source: 8
target: 9223372036854775807

How do I get the actual maximum version available to migrate()?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

There is currently no functionality to query the available migrations. Feel free to raise an issue :-)

link|improve this answer
1  
I filed a RFE: code.google.com/p/flyway/issues/detail?id=202 – Gili Dec 30 '11 at 18:02
feedback

Your Answer

 
or
required, but never shown

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