Skip to content

Instantly share code, notes, and snippets.

@Teddybiers
Created August 22, 2017 08:43
Show Gist options
  • Save Teddybiers/49a836035d6a495dec2f0594456d7d65 to your computer and use it in GitHub Desktop.
Save Teddybiers/49a836035d6a495dec2f0594456d7d65 to your computer and use it in GitHub Desktop.
Run Migration with deployment
protected void Application_Start()
{
var dbConfig = new Migrations.Configuration();
var migrator = new DbMigrator(dbConfig);
migrator.Update();
}
<appSettings>
<add key="MigrateDatabaseToLatestVersion" value="true" />
</appSettings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment