Is there any easy to install/use (on unix) database migration tools like Rails Migrations? I really like the idea, but installing ruby/rails purely to manage my database migrations seems overkill.
|
4
|
|
|
|
|
|
Just use ActiveRecord and a simple Rakefile. For example, if you put your migrations in a Rakefile:
database.yml:
Afterwards, you'll be able to run Alternatively, I have a set of bash scripts that perform a very similar function to ActiveRecord migrations, but they only work with Oracle. I used to use them before switching to Ruby and Rails. They are somewhat complicated and I provide no support for them, but if you are interested, feel free to contact me. |
|||
|
|
|
|
There's also a project called Java Database Migrations. To get the code check out the Google Code page for the project. |
||||||
|
|
|
I haven't personally done it, but it should be possible to use ActiveRecord::Migration without any of the other Rails stuff. Setting up the load path correctly would be the hard part, but really all you need is the At a previous company we built a tool that did essentially what ActiveRecord::Migration does, except it was written in Java as a Maven plugin. All it did was assemble text blobs of SQL scripts. It just needs to be smart about the filenames going in order and know how to update a versioning table. |
||
|
|
