Rules changes and rework

This commit is contained in:
Jamie.Rees 2017-06-06 09:27:51 +01:00
parent d5ec429893
commit 9f4a8902f9
32 changed files with 2804 additions and 35 deletions

View file

@ -1,8 +1,5 @@
using System;
using System.IO;
using System.Resources;
using System.IO;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Ombi.Store.Entities;
namespace Ombi.Store.Context
@ -35,12 +32,7 @@ namespace Ombi.Store.Context
public DbSet<GlobalSettings> Settings { get; set; }
public DbSet<User> Users { get; set; }
public DbSet<PlexContent> PlexContent { get; set; }
public EntityEntry<T> Entry<T>(T entry) where T : class
{
return base.Entry(entry);
}
public DbSet<RadarrCache> RadarrCache { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{