Added the Emby Cacher, we now cache the Emby data!

This commit is contained in:
tidusjar 2017-09-02 00:18:54 +01:00
parent 6d276a3c3d
commit 012a82ca2d
19 changed files with 441 additions and 20 deletions

View file

@ -158,6 +158,26 @@ namespace Ombi.Store.Migrations
b.ToTable("Audit");
});
modelBuilder.Entity("Ombi.Store.Entities.EmbyContent", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<DateTime>("AddedAt");
b.Property<string>("EmbyId");
b.Property<string>("ProviderId");
b.Property<string>("Title");
b.Property<int>("Type");
b.HasKey("Id");
b.ToTable("EmbyContent");
});
modelBuilder.Entity("Ombi.Store.Entities.GlobalSettings", b =>
{
b.Property<int>("Id")