소스 검색

Add device entities to schema.

Patrick Barron 4 년 전
부모
커밋
e6f1ffdc8d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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; }