|
|
|
@ -1,6 +1,4 @@
|
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
|
|
// <auto-generated />
|
|
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
|
|
|
|
using Jellyfin.Server.Implementations;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
@ -11,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(JellyfinDb))]
|
|
|
|
|
[Migration("20200630170339_AddDisplayPreferences")]
|
|
|
|
|
[Migration("20200717233541_AddDisplayPreferences")]
|
|
|
|
|
partial class AddDisplayPreferences
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
|
|
@ -98,11 +96,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");
|
|
|
|
|
|
|
|
|
@ -124,8 +128,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");
|