views:

535

answers:

4

Is there a tool in the Java/Groovy world that lets me manage database changes similar to the way that Rails Database Migrations work?

+1  A: 

If you dont mind using the rails way db schema just use rails migrations for your project.

I have a PHP project and I setup a bare rails project with migrations for it.

Works great.

Corban Brook
A: 

In the Grails world, you can use the Autobase plugin. If that is nonsensical for your project, you can just use the tool that it is based off of, Liquibase. Both are a nice set of idiomatic Java/Grails tools.

jkl
A: 

I blogged about database migrations for java recently here.

Karussell
Great blog post karussel! You showed me migrate4j!!
Shaun F
Glad that I could help you :-)
Karussell