|
using System.Data.Entity.Migrations;
|
using System.Data.SQLite.EF6.Migrations;
|
|
namespace Bro.M071.Model.Migrations
|
{
|
|
public sealed class Configuration : DbMigrationsConfiguration<DBModel>
|
{
|
public Configuration()
|
{
|
AutomaticMigrationsEnabled = true;
|
AutomaticMigrationDataLossAllowed = true;
|
|
#region for sqlite db
|
SetSqlGenerator("System.Data.SQLite", new SQLiteMigrationSqlGenerator());
|
#endregion
|
}
|
|
protected override void Seed(DBModel 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" }
|
// );
|
//
|
}
|
}
|
}
|