Emby improvments on the way we sync/cache the data.

This commit is contained in:
Jamie 2018-04-06 23:56:57 +01:00
parent daaf52d771
commit 386f5b1550
15 changed files with 1221 additions and 79 deletions

View file

@ -185,10 +185,16 @@ namespace Ombi.Store.Migrations
b.Property<string>("EmbyId")
.IsRequired();
b.Property<string>("ImdbId");
b.Property<string>("ProviderId");
b.Property<string>("TheMovieDbId");
b.Property<string>("Title");
b.Property<string>("TvDbId");
b.Property<int>("Type");
b.HasKey("Id");
@ -207,14 +213,20 @@ namespace Ombi.Store.Migrations
b.Property<int>("EpisodeNumber");
b.Property<string>("ImdbId");
b.Property<string>("ParentId");
b.Property<string>("ProviderId");
b.Property<int>("SeasonNumber");
b.Property<string>("TheMovieDbId");
b.Property<string>("Title");
b.Property<string>("TvDbId");
b.HasKey("Id");
b.HasIndex("ParentId");