The ObviousRuby on Rails "Migrations" ported to .NET
Migrations are a way to define your database schema in such a way that it is easy to:
* put into source control (know which schema changes relate to which code changes)
* share between developers
* rollback or upgrade to any version of t
The Details
The Preview