Insights and outlooks on software development

S'true

On migrations

Saturday, November 14, 2009 by Thomas L

Aaron Jensen recently asked what migrations tools people use for .NET development. In my current project, I use MigratorDotNet, which works quite well for us. The standard types of migrations, like add table, add column, add fk, are there, but if you need to do something more advanced, there's always a possibility to execute the SQL raw against the database.

What tool do you use to handle the database during development?

Filed under , , having  

1 kommentarer:

Morgan said...

We also use MigratorDotNet and it works alright. I wish there where a few simple refactoring patterns implemented, like rename column.