a5fcb46e04
Transaction updates
21 lines
447 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|