I\'m working on a project using MVC4 in Visual Studio 2012 and have added a column in the table.
Now when I want to debug my project the error says to use the migrat
Commands:
enable-migrations default context
add-migration InitialCreate
(for generating snapshot)add-migration InitialCreate
(to apply snapshot)update-database
update-database -verbose
Detailed explination will here: http://www.dotnet-tricks.com/Tutorial/entityframework/R54K181213-Understanding-Entity-Framework-Code-First-Migrations.html