I am following steps in http://blogs.msdn.com/b/adonet/archive/2012/01/12/ef-4-3-beta-1-code-based-migrations-walkthrough.aspx in my solution.
I have 7 classes in my code first context. I am getting "Migration0" class with empty up down methods after i execute "Add-Migration Migration0 -StartUpProjectName MyStartUpProject" command, but apparently that shouldn't be the case according to the walkthrough.
And also nothing happens if i execute the command : Update-Database -Script -SourceMigration:"0" -TargetMigration:"Migration0"
Am i missing something?