|
@@ -1,5 +1,4 @@
|
|
|
#pragma warning disable CS1591
|
|
|
-#pragma warning disable SA1601
|
|
|
|
|
|
// <auto-generated />
|
|
|
using System;
|
|
@@ -12,7 +11,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
{
|
|
|
[DbContext(typeof(JellyfinDb))]
|
|
|
- [Migration("20200517002411_AddUsers")]
|
|
|
+ [Migration("20200527010628_AddUsers")]
|
|
|
partial class AddUsers
|
|
|
{
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
@@ -20,7 +19,7 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
#pragma warning disable 612, 618
|
|
|
modelBuilder
|
|
|
.HasDefaultSchema("jellyfin")
|
|
|
- .HasAnnotation("ProductVersion", "3.1.3");
|
|
|
+ .HasAnnotation("ProductVersion", "3.1.4");
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
|
|
|
{
|
|
@@ -129,7 +128,8 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
|
b.Property<string>("Path")
|
|
|
.IsRequired()
|
|
|
- .HasColumnType("TEXT");
|
|
|
+ .HasColumnType("TEXT")
|
|
|
+ .HasMaxLength(512);
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
@@ -331,6 +331,9 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
b.Property<int>("SubtitleMode")
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
+ b.Property<int>("SyncPlayAccess")
|
|
|
+ .HasColumnType("INTEGER");
|
|
|
+
|
|
|
b.Property<string>("Username")
|
|
|
.IsRequired()
|
|
|
.HasColumnType("TEXT")
|