14 lines
289 B
C#
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();
|
|
}
|
|
}
|
|
}
|