|
|
|
@ -11,7 +11,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(JellyfinDb))]
|
|
|
|
|
[Migration("20200717233541_AddDisplayPreferences")]
|
|
|
|
|
[Migration("20200728005145_AddDisplayPreferences")]
|
|
|
|
|
partial class AddDisplayPreferences
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
|
|
@ -19,7 +19,7 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
|
|
|
|
.HasDefaultSchema("jellyfin")
|
|
|
|
|
.HasAnnotation("ProductVersion", "3.1.5");
|
|
|
|
|
.HasAnnotation("ProductVersion", "3.1.6");
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
|
|
|
|
|
{
|
|
|
|
@ -104,7 +104,11 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
b.Property<string>("Client")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("TEXT")
|
|
|
|
|
.HasMaxLength(64);
|
|
|
|
|
.HasMaxLength(32);
|
|
|
|
|
|
|
|
|
|
b.Property<string>("DashboardTheme")
|
|
|
|
|
.HasColumnType("TEXT")
|
|
|
|
|
.HasMaxLength(32);
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("EnableNextVideoInfoOverlay")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
@ -112,15 +116,6 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
b.Property<int?>("IndexBy")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("ItemId")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("RememberIndexing")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("RememberSorting")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("ScrollDirection")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
@ -136,22 +131,17 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
b.Property<int>("SkipForwardLength")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("SortBy")
|
|
|
|
|
b.Property<string>("TvHome")
|
|
|
|
|
.HasColumnType("TEXT")
|
|
|
|
|
.HasMaxLength(64);
|
|
|
|
|
|
|
|
|
|
b.Property<int>("SortOrder")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
.HasMaxLength(32);
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("UserId")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<int?>("ViewType")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
b.HasIndex("UserId")
|
|
|
|
|
.IsUnique();
|
|
|
|
|
|
|
|
|
|
b.ToTable("DisplayPreferences");
|
|
|
|
|
});
|
|
|
|
@ -203,6 +193,50 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
b.ToTable("ImageInfos");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Client")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("TEXT")
|
|
|
|
|
.HasMaxLength(32);
|
|
|
|
|
|
|
|
|
|
b.Property<int?>("IndexBy")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("ItemId")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("RememberIndexing")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("RememberSorting")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("SortBy")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("TEXT")
|
|
|
|
|
.HasMaxLength(64);
|
|
|
|
|
|
|
|
|
|
b.Property<int>("SortOrder")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("UserId")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("ViewType")
|
|
|
|
|
.HasColumnType("INTEGER");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("ItemDisplayPreferences");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
@ -375,8 +409,8 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Jellyfin.Data.Entities.User", null)
|
|
|
|
|
.WithMany("DisplayPreferences")
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.WithOne("DisplayPreferences")
|
|
|
|
|
.HasForeignKey("Jellyfin.Data.Entities.DisplayPreferences", "UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
@ -397,6 +431,15 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
.HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Jellyfin.Data.Entities.User", null)
|
|
|
|
|
.WithMany("ItemDisplayPreferences")
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Jellyfin.Data.Entities.User", null)
|