Configuration.cs 466 B

12345678910111213141516
  1. using System.Data.Entity.Migrations;
  2. namespace Azylee.BlackBox.DBEngine
  3. {
  4. public class Configuration : DbMigrationsConfiguration<SuperDb>
  5. {
  6. public Configuration()
  7. {
  8. AutomaticMigrationsEnabled = true;
  9. AutomaticMigrationDataLossAllowed = true;
  10. //SetSqlGenerator("System.Data.SQLite", new SQLiteMigrationSqlGenerator());
  11. }
  12. protected override void Seed(SuperDb context)
  13. { }
  14. }
  15. }