Using active record migrations on a .NET project
I want to use the rails like database migrations on a .net project which uses an oracle database. Looking around at some of the frameworks like migratior.net (which apparently isn't well tested with oracle) I've decided to just try and use the rails active record as it looks like it's probably the most supported framework around.
My question is, if I just want to use the database migrations part from rails, do I have to install the whole开发者_JAVA技巧 rails framework or are there only certain packages I need?
Thanks
A couple of links:
Dave Thomas discussing this
Rails Migrations in non-Rails projects
If you're okay with a slightly different approach, you could look at the Oracle extensions for the 'Data Dude' schema merging functionality in Visual Studio.
精彩评论