Mineplex2018-withcommit/Website/LOC.Website.Common/Contexts/LOCDatabaseUpdater.cs

14 lines
289 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Website.Common.Contexts
{
using System.Data.Entity.Migrations;
public class LOCDatabaseUpdater
{
public void Update()
{
var migrator = new DbMigrator(new LocContextConfiguration());
migrator.Update();
}
}
}