Skip to content

Instantly share code, notes, and snippets.

@avisser
Created February 4, 2016 20:20
Show Gist options
  • Save avisser/bdaf6d385c7d995b3d9b to your computer and use it in GitHub Desktop.
Save avisser/bdaf6d385c7d995b3d9b to your computer and use it in GitHub Desktop.
public class Configuration : DbMigrationsConfiguration<SpecReach.Models.SpecContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = false;
}
protected override void Seed(SpecReach.Models.SpecContext context)
{
// This method will be called after migrating to the latest version.
// You can use the DbSet<T>.AddOrUpdate() helper extension method
// to avoid creating duplicate seed data. E.g.
//
// context.People.AddOrUpdate(
// p => p.FullName,
// new Person { FullName = "Andrew Peters" },
// new Person { FullName = "Brice Lambson" },
// new Person { FullName = "Rowan Miller" }
// );
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment