diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-04-10 16:15:59 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-04-10 16:15:59 -0400 |
| commit | e6f1ffdc8d2d430cbe4ac1d797e455950bb79ed3 (patch) | |
| tree | c80b63b8ce20864ee710613ef64abe1e77026ee9 | |
| parent | 9cd53523583b2b3e12ba927ce10e9685ea78d255 (diff) | |
Add device entities to schema.
| -rw-r--r-- | Jellyfin.Server.Implementations/JellyfinDb.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/JellyfinDb.cs b/Jellyfin.Server.Implementations/JellyfinDb.cs index 0559e5783..32a857047 100644 --- a/Jellyfin.Server.Implementations/JellyfinDb.cs +++ b/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; } |
