DEV Community

Discussion on: How to work with stored procedures and not die trying

Collapse
 
hardkoded profile image
Darío Kondratiuk

Regarding the migration process, Visual Studio keeps track of refactors in a refactorlog file. So if you rename the table Foo to Var it won't try to drop Foo and create Var, it'll perform a table rename.

But when we start talking about data... yeah, that's a headache.

I'll take a look at your post!