Files
InventoryTracker/InventoryTraker.Web/Migrations/Configuration.cs
T
poprhythm a5fcb46e04 InventoryType from XML
Transaction updates
2016-08-25 13:00:09 -04:00

21 lines
447 B
C#

using System.Data.Entity.Migrations;
using InventoryTraker.Web.Data;
namespace InventoryTraker.Web.Migrations
{
internal sealed class Configuration : DbMigrationsConfiguration<AppDbContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = true;
// TODO false
AutomaticMigrationDataLossAllowed = true;
}
protected override void Seed(AppDbContext context)
{
}
}
}