Hacker News new | ask | show | jobs
by shoq 3941 days ago
We're currently looking at http://flywaydb.org/. Does anyone care to share some expiriences?
2 comments

Especially if your build involves Maven, FlywayDB is a very good choice if you want to use native SQL to manage your schema.

I was originally quite bullish on FlywayDB until I started looking into Liquibase by way of Dropwizard. I'm personally not quite convinced of the need for native SQL scripting for schema management, as I often like to work in H2 for dev and something else for production.

However, if you primarily want to use JDBC + native SQL to manage your schema, Flyway is quite powerful and easy to fold into your build process.

Coming from Django and Rails Flyway was missing support for rollbacks. Everything else worked well mind...