Non-rails application -- want to use migration for sql 2005

Hi,
I want to use migration feature for a non-rails application.My
application uses SQL 2005.How can I do it?
thanks

On Tue, Feb 26, 2008 at 9:17 AM, Vishal Sodani <
[email protected]> wrote:

Hi,
I want to use migration feature for a non-rails application.My
application uses SQL 2005.How can I do it?

Say you’re writing a desktop application using the .NET framework. You
could
generate a Rails application just for the migration feature and store it
in
your project hierarchy. For example,

my_cool_project
db
migrations // the name of your rails app
app

db
migrate // the usual migrations structure in a rails app
001_…
002_…

lib
log
public

src // you’re .NET code

Otherwise, I’d search Google. For example, this search

migration outside rails

turns up several hits.

Regards,
Craig