Database migrations for MS SQL Server
Posted
by Art
on Stack Overflow
See other posts from Stack Overflow
or by Art
Published on 2010-04-08T00:32:19Z
Indexed on
2010/04/08
0:33 UTC
Read the original article
Hit count: 494
I need a database migration framework for MS SQL Server, capable of managing both schema changes and data migrations.
I guess I am looking for something similar to django's South framework here.
given the fact that South is tightly coupled with django's ORM, and the fact that there's so many ORMs for MS SQL I guess having just a generic migration framework, enabling you to write and execute in controlled and sequential manner SQL data/schema change scripts should be sufficient.
Thanks!
© Stack Overflow or respective owner