I just enabled migrations in my project and added a few fields to UserProfile:
UserProfile
[Table(\"UserProfile\")] public class UserProfile { [Key]
call this method in your startup code to have the database recreated with the new fields:
public void CheckForDBChanes() { Database.SetInitializer(new DropCreateDatabaseIfModelChanges()); }