19 lines
397 B
C#
19 lines
397 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;
|
|
}
|
|
|
|
protected override void Seed(AppDbContext context)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|