to release, a broken migration history ...

This commit is contained in:
Paul Schneider 2018-06-25 17:54:39 +02:00
commit 4ed611df74
4 changed files with 5 additions and 2123 deletions

View file

@ -68,6 +68,11 @@ namespace Yavsc.Models
et.FindProperty("DateCreated").IsReadOnlyAfterSave = true;
}
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseNpgsql(Startup.ConnectionString);
}
public DbSet<Client> Applications { get; set; }