Some errors fixed and some ui improvements #865

Also reworked sonarr and how episodes work
This commit is contained in:
tidusjar 2017-10-04 20:28:18 +01:00
parent c56af9afe8
commit 95e3c62e30
23 changed files with 1017 additions and 137 deletions

View file

@ -545,6 +545,22 @@ namespace Ombi.Store.Migrations
b.ToTable("SonarrCache");
});
modelBuilder.Entity("Ombi.Store.Entities.SonarrEpisodeCache", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("EpisodeNumber");
b.Property<int>("SeasonNumber");
b.Property<int>("TvDbId");
b.HasKey("Id");
b.ToTable("SonarrEpisodeCache");
});
modelBuilder.Entity("Ombi.Store.Entities.Tokens", b =>
{
b.Property<int>("Id")