As cdeszaq already mentioned the feature comparison matrix on the Flyway Homepage is a good starting point.
Both Liquibase and Flyway have Maven and Ant integration.
The next step is to determine if you can live with Liquibase's XML or annotated SQL formats or whether you prefer or require plain SQL and whether you need Java migrations.
Each has their pros and cons:
- Liquibase XML: Smallest common denominator DB-independent format. It frees you from writing DDL and is compatible across DBs. Vendor lock-in (may or may not be an issue).
- Liquibase annotated SQL: SQL with Liquibase metadata in comments (must be present). DDL gets converted to Liquibase XML with custom SQL blocks at runtime. May or may not be compatible across DBs.
- Plain SQL (supported by Flyway): Regular DDL SQL file. May or may not be compatible across DBs. No special annotations. DB structure dumps using native DB tools may be used as is. No tool specific constructs. No lock in.
- Java migrations (supported by Flyway): Migrations are Java classes using the JDBC API. Great for dealing with LOBs and complex data transformations. May or may not be compatible across DBs. Vendor lock-in (may or may not be an issue).
A small note on DDL portability: in-memory DBs like H2 have good compatibility modes with "real" DBs. This may eliminate the need for an additional abstraction.
These are other potential differentiators to look for:
- if you wish to use DB dumps out of the box (including ones using PL/SQL, T-SQL or MySQL and PostgreSQL stored procedures): Go for Flyway.
- if DDL is incompatible between the databases and you don't mind Liquibase's XML and you don't need advanced vendor specific features: Go for Liquibase.
- if you need support for a DB not supported by Flyway: Go for Liquibase.
- if you need support for LOBs (in reference data for example): Go for Flyway.
This leaves us to the issue of simplicity and application integration. This is the area where I believe Flyway shines. It is very lightweight and the application integration couldn't be easier.
To make a long story short and in the spirit of YAGNI: use the simplest tool that fits your needs.
Note: The issue of down migrations is a red herring as I've described here
Disclaimer: I am one of Flyway's developers and I am looking forward to your feedback. :-)