diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-07-17 19:36:55 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-07-17 19:36:55 -0400 |
| commit | 27eefd49f1011a9be3be4f18069942cd484c1530 (patch) | |
| tree | 3358c7be20802ddff3cdbe9d73eddc4a43bf6932 /Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs | |
| parent | d8060849376ae8e1cf309b04e01a24bdc6089c58 (diff) | |
Add missing fields
Diffstat (limited to 'Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs b/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs index 69b544e5b..76de592ac 100644 --- a/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs +++ b/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs @@ -94,11 +94,17 @@ namespace Jellyfin.Server.Implementations.Migrations .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); + b.Property<int>("ChromecastVersion") + .HasColumnType("INTEGER"); + b.Property<string>("Client") .IsRequired() .HasColumnType("TEXT") .HasMaxLength(64); + b.Property<bool>("EnableNextVideoInfoOverlay") + .HasColumnType("INTEGER"); + b.Property<int?>("IndexBy") .HasColumnType("INTEGER"); @@ -120,8 +126,15 @@ namespace Jellyfin.Server.Implementations.Migrations b.Property<bool>("ShowSidebar") .HasColumnType("INTEGER"); + b.Property<int>("SkipBackwardLength") + .HasColumnType("INTEGER"); + + b.Property<int>("SkipForwardLength") + .HasColumnType("INTEGER"); + b.Property<string>("SortBy") - .HasColumnType("TEXT"); + .HasColumnType("TEXT") + .HasMaxLength(64); b.Property<int>("SortOrder") .HasColumnType("INTEGER"); |
