Procházet zdrojové kódy

Add device entities to schema.

Patrick Barron před 4 roky
rodič
revize
e6f1ffdc8d
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      Jellyfin.Server.Implementations/JellyfinDb.cs

+ 4 - 0
Jellyfin.Server.Implementations/JellyfinDb.cs

@@ -32,6 +32,10 @@ namespace Jellyfin.Server.Implementations
 
         public virtual DbSet<ApiKey> ApiKeys { get; set; }
 
+        public virtual DbSet<Device> Devices { get; set; }
+
+        public virtual DbSet<DeviceOptions> DeviceOptions { get; set; }
+
         public virtual DbSet<DisplayPreferences> DisplayPreferences { get; set; }
 
         public virtual DbSet<ImageInfo> ImageInfos { get; set; }