!minor unit testing

This commit is contained in:
Jamie.Rees 2017-10-17 14:31:58 +01:00
commit ba04a9d1b1
11 changed files with 230 additions and 103 deletions

View file

@ -66,6 +66,8 @@ namespace Ombi.Store.Context
.WithMany(b => b.Episodes)
.HasPrincipalKey(x => x.EmbyId)
.HasForeignKey(p => p.ParentId);
builder.Ignore<Logs>();
base.OnModelCreating(builder);
}