I use MSBuild.exe and bat-files to build solution on production. How I should migrate database on production using Entity Framework 6? I think that is not cool use this code on prodiction
public Configuration()
{
AutomaticMigrationsEnabled = true;
AutomaticMigrationDataLossAllowed = true;
}