Mineplex2018-withcommit/Website/LOC.Website.Common/Contexts/LOCDatabaseUpdater.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

14 lines
289 B
C#

namespace LOC.Website.Common.Contexts
{
using System.Data.Entity.Migrations;
public class LOCDatabaseUpdater
{
public void Update()
{
var migrator = new DbMigrator(new LocContextConfiguration());
migrator.Update();
}
}
}