I am using migrator.net to handle database migrations for SQL Server, and I like it so far. The only issue I've run into is how best to migrate changes to views. Thus far, I've been managing each update as a separate script file (which recreates the view). This lets me go back to previous versions of the view without duplicating the code. This approach is working okay for now, but it seems like a lot of work to make a small change to a view. Has anyone else run into this type of problem? Are there any libraries out there that handle view migrations more robustly?
Thanks!