If I use Ruby Migrations, do I have to use the rest of Ruby on Rails?

Posted by jkohlhepp on Programmers See other posts from Programmers or by jkohlhepp
Published on 2012-06-21T14:09:22Z Indexed on 2012/06/21 15:23 UTC
Read the original article Hit count: 856

Filed under:
|
|

I'm currently trying to come up with a database migrations strategy for my organization. This includes getting the database scripts into source control, managing versioning, managing releases to QA / Production, managing branching and merging across different release branches, etc.

Ruby Migrations seems to offer solutions to a lot of those problems. But, from looking at the Ruby on Rails docs, it is unclear to me whether Ruby Migrations can be separated from the rest of the framework. I work in a primarily .NET shop, but with a lot of other technologies, and with multiple DBMS platforms (SQL Server, Oracle of various versions). Ruby is not present in our portfolio at all right now, and we have no plans to use it. If I was to use Ruby Migrations, it would be the only piece of the Ruby on Rails framework that we would want to use.

Can Ruby Migrations be effectively used to manage database changes independently of the rest of the Ruby on Rails framework? Are there any docs or articles out there that describe this workflow?

(Yes, I know there are other options such as Liquibase but I'm specifically trying to learn about Ruby Migrations with this question.)

© Programmers or respective owner

Related posts about ruby

Related posts about ruby-on-rails