< Summary - Jellyfin

Line coverage
99%
Covered lines: 652
Uncovered lines: 3
Coverable lines: 655
Total lines: 721
Line coverage: 99.5%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
File 1: Up(...)100%11100%
File 1: Down(...)100%210%
File 2: BuildTargetModel(...)100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20230626233818_AddTrickplayInfos.cs

#LineLine coverage
 1using System;
 2using Microsoft.EntityFrameworkCore.Migrations;
 3
 4#nullable disable
 5
 6namespace Jellyfin.Server.Implementations.Migrations
 7{
 8    /// <inheritdoc />
 9    public partial class AddTrickplayInfos : Migration
 10    {
 11        /// <inheritdoc />
 12        protected override void Up(MigrationBuilder migrationBuilder)
 13        {
 2114            migrationBuilder.CreateTable(
 2115                name: "TrickplayInfos",
 2116                columns: table => new
 2117                {
 2118                    ItemId = table.Column<Guid>(type: "TEXT", nullable: false),
 2119                    Width = table.Column<int>(type: "INTEGER", nullable: false),
 2120                    Height = table.Column<int>(type: "INTEGER", nullable: false),
 2121                    TileWidth = table.Column<int>(type: "INTEGER", nullable: false),
 2122                    TileHeight = table.Column<int>(type: "INTEGER", nullable: false),
 2123                    ThumbnailCount = table.Column<int>(type: "INTEGER", nullable: false),
 2124                    Interval = table.Column<int>(type: "INTEGER", nullable: false),
 2125                    Bandwidth = table.Column<int>(type: "INTEGER", nullable: false)
 2126                },
 2127                constraints: table =>
 2128                {
 2129                    table.PrimaryKey("PK_TrickplayInfos", x => new { x.ItemId, x.Width });
 2130                });
 2131        }
 32
 33        /// <inheritdoc />
 34        protected override void Down(MigrationBuilder migrationBuilder)
 35        {
 036            migrationBuilder.DropTable(
 037                name: "TrickplayInfos");
 038        }
 39    }
 40}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20230626233818_AddTrickplayInfos.Designer.cs

#LineLine coverage
 1// <auto-generated />
 2using System;
 3using Jellyfin.Database.Implementations;
 4using Microsoft.EntityFrameworkCore;
 5using Microsoft.EntityFrameworkCore.Infrastructure;
 6using Microsoft.EntityFrameworkCore.Migrations;
 7using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 8
 9#nullable disable
 10
 11namespace Jellyfin.Server.Implementations.Migrations
 12{
 13    [DbContext(typeof(JellyfinDbContext))]
 14    [Migration("20230626233818_AddTrickplayInfos")]
 15    partial class AddTrickplayInfos
 16    {
 17        /// <inheritdoc />
 18        protected override void BuildTargetModel(ModelBuilder modelBuilder)
 19        {
 20#pragma warning disable 612, 618
 2121            modelBuilder.HasAnnotation("ProductVersion", "7.0.7");
 22
 2123            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 2124                {
 2125                    b.Property<int>("Id")
 2126                        .ValueGeneratedOnAdd()
 2127                        .HasColumnType("INTEGER");
 2128
 2129                    b.Property<int>("DayOfWeek")
 2130                        .HasColumnType("INTEGER");
 2131
 2132                    b.Property<double>("EndHour")
 2133                        .HasColumnType("REAL");
 2134
 2135                    b.Property<double>("StartHour")
 2136                        .HasColumnType("REAL");
 2137
 2138                    b.Property<Guid>("UserId")
 2139                        .HasColumnType("TEXT");
 2140
 2141                    b.HasKey("Id");
 2142
 2143                    b.HasIndex("UserId");
 2144
 2145                    b.ToTable("AccessSchedules");
 2146                });
 47
 2148            modelBuilder.Entity("Jellyfin.Data.Entities.ActivityLog", b =>
 2149                {
 2150                    b.Property<int>("Id")
 2151                        .ValueGeneratedOnAdd()
 2152                        .HasColumnType("INTEGER");
 2153
 2154                    b.Property<DateTime>("DateCreated")
 2155                        .HasColumnType("TEXT");
 2156
 2157                    b.Property<string>("ItemId")
 2158                        .HasMaxLength(256)
 2159                        .HasColumnType("TEXT");
 2160
 2161                    b.Property<int>("LogSeverity")
 2162                        .HasColumnType("INTEGER");
 2163
 2164                    b.Property<string>("Name")
 2165                        .IsRequired()
 2166                        .HasMaxLength(512)
 2167                        .HasColumnType("TEXT");
 2168
 2169                    b.Property<string>("Overview")
 2170                        .HasMaxLength(512)
 2171                        .HasColumnType("TEXT");
 2172
 2173                    b.Property<uint>("RowVersion")
 2174                        .IsConcurrencyToken()
 2175                        .HasColumnType("INTEGER");
 2176
 2177                    b.Property<string>("ShortOverview")
 2178                        .HasMaxLength(512)
 2179                        .HasColumnType("TEXT");
 2180
 2181                    b.Property<string>("Type")
 2182                        .IsRequired()
 2183                        .HasMaxLength(256)
 2184                        .HasColumnType("TEXT");
 2185
 2186                    b.Property<Guid>("UserId")
 2187                        .HasColumnType("TEXT");
 2188
 2189                    b.HasKey("Id");
 2190
 2191                    b.HasIndex("DateCreated");
 2192
 2193                    b.ToTable("ActivityLogs");
 2194                });
 95
 2196            modelBuilder.Entity("Jellyfin.Data.Entities.CustomItemDisplayPreferences", b =>
 2197                {
 2198                    b.Property<int>("Id")
 2199                        .ValueGeneratedOnAdd()
 21100                        .HasColumnType("INTEGER");
 21101
 21102                    b.Property<string>("Client")
 21103                        .IsRequired()
 21104                        .HasMaxLength(32)
 21105                        .HasColumnType("TEXT");
 21106
 21107                    b.Property<Guid>("ItemId")
 21108                        .HasColumnType("TEXT");
 21109
 21110                    b.Property<string>("Key")
 21111                        .IsRequired()
 21112                        .HasColumnType("TEXT");
 21113
 21114                    b.Property<Guid>("UserId")
 21115                        .HasColumnType("TEXT");
 21116
 21117                    b.Property<string>("Value")
 21118                        .HasColumnType("TEXT");
 21119
 21120                    b.HasKey("Id");
 21121
 21122                    b.HasIndex("UserId", "ItemId", "Client", "Key")
 21123                        .IsUnique();
 21124
 21125                    b.ToTable("CustomItemDisplayPreferences");
 21126                });
 127
 21128            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21129                {
 21130                    b.Property<int>("Id")
 21131                        .ValueGeneratedOnAdd()
 21132                        .HasColumnType("INTEGER");
 21133
 21134                    b.Property<int>("ChromecastVersion")
 21135                        .HasColumnType("INTEGER");
 21136
 21137                    b.Property<string>("Client")
 21138                        .IsRequired()
 21139                        .HasMaxLength(32)
 21140                        .HasColumnType("TEXT");
 21141
 21142                    b.Property<string>("DashboardTheme")
 21143                        .HasMaxLength(32)
 21144                        .HasColumnType("TEXT");
 21145
 21146                    b.Property<bool>("EnableNextVideoInfoOverlay")
 21147                        .HasColumnType("INTEGER");
 21148
 21149                    b.Property<int?>("IndexBy")
 21150                        .HasColumnType("INTEGER");
 21151
 21152                    b.Property<Guid>("ItemId")
 21153                        .HasColumnType("TEXT");
 21154
 21155                    b.Property<int>("ScrollDirection")
 21156                        .HasColumnType("INTEGER");
 21157
 21158                    b.Property<bool>("ShowBackdrop")
 21159                        .HasColumnType("INTEGER");
 21160
 21161                    b.Property<bool>("ShowSidebar")
 21162                        .HasColumnType("INTEGER");
 21163
 21164                    b.Property<int>("SkipBackwardLength")
 21165                        .HasColumnType("INTEGER");
 21166
 21167                    b.Property<int>("SkipForwardLength")
 21168                        .HasColumnType("INTEGER");
 21169
 21170                    b.Property<string>("TvHome")
 21171                        .HasMaxLength(32)
 21172                        .HasColumnType("TEXT");
 21173
 21174                    b.Property<Guid>("UserId")
 21175                        .HasColumnType("TEXT");
 21176
 21177                    b.HasKey("Id");
 21178
 21179                    b.HasIndex("UserId", "ItemId", "Client")
 21180                        .IsUnique();
 21181
 21182                    b.ToTable("DisplayPreferences");
 21183                });
 184
 21185            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21186                {
 21187                    b.Property<int>("Id")
 21188                        .ValueGeneratedOnAdd()
 21189                        .HasColumnType("INTEGER");
 21190
 21191                    b.Property<int>("DisplayPreferencesId")
 21192                        .HasColumnType("INTEGER");
 21193
 21194                    b.Property<int>("Order")
 21195                        .HasColumnType("INTEGER");
 21196
 21197                    b.Property<int>("Type")
 21198                        .HasColumnType("INTEGER");
 21199
 21200                    b.HasKey("Id");
 21201
 21202                    b.HasIndex("DisplayPreferencesId");
 21203
 21204                    b.ToTable("HomeSection");
 21205                });
 206
 21207            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21208                {
 21209                    b.Property<int>("Id")
 21210                        .ValueGeneratedOnAdd()
 21211                        .HasColumnType("INTEGER");
 21212
 21213                    b.Property<DateTime>("LastModified")
 21214                        .HasColumnType("TEXT");
 21215
 21216                    b.Property<string>("Path")
 21217                        .IsRequired()
 21218                        .HasMaxLength(512)
 21219                        .HasColumnType("TEXT");
 21220
 21221                    b.Property<Guid?>("UserId")
 21222                        .HasColumnType("TEXT");
 21223
 21224                    b.HasKey("Id");
 21225
 21226                    b.HasIndex("UserId")
 21227                        .IsUnique();
 21228
 21229                    b.ToTable("ImageInfos");
 21230                });
 231
 21232            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21233                {
 21234                    b.Property<int>("Id")
 21235                        .ValueGeneratedOnAdd()
 21236                        .HasColumnType("INTEGER");
 21237
 21238                    b.Property<string>("Client")
 21239                        .IsRequired()
 21240                        .HasMaxLength(32)
 21241                        .HasColumnType("TEXT");
 21242
 21243                    b.Property<int?>("IndexBy")
 21244                        .HasColumnType("INTEGER");
 21245
 21246                    b.Property<Guid>("ItemId")
 21247                        .HasColumnType("TEXT");
 21248
 21249                    b.Property<bool>("RememberIndexing")
 21250                        .HasColumnType("INTEGER");
 21251
 21252                    b.Property<bool>("RememberSorting")
 21253                        .HasColumnType("INTEGER");
 21254
 21255                    b.Property<string>("SortBy")
 21256                        .IsRequired()
 21257                        .HasMaxLength(64)
 21258                        .HasColumnType("TEXT");
 21259
 21260                    b.Property<int>("SortOrder")
 21261                        .HasColumnType("INTEGER");
 21262
 21263                    b.Property<Guid>("UserId")
 21264                        .HasColumnType("TEXT");
 21265
 21266                    b.Property<int>("ViewType")
 21267                        .HasColumnType("INTEGER");
 21268
 21269                    b.HasKey("Id");
 21270
 21271                    b.HasIndex("UserId");
 21272
 21273                    b.ToTable("ItemDisplayPreferences");
 21274                });
 275
 21276            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21277                {
 21278                    b.Property<int>("Id")
 21279                        .ValueGeneratedOnAdd()
 21280                        .HasColumnType("INTEGER");
 21281
 21282                    b.Property<int>("Kind")
 21283                        .HasColumnType("INTEGER");
 21284
 21285                    b.Property<Guid?>("Permission_Permissions_Guid")
 21286                        .HasColumnType("TEXT");
 21287
 21288                    b.Property<uint>("RowVersion")
 21289                        .IsConcurrencyToken()
 21290                        .HasColumnType("INTEGER");
 21291
 21292                    b.Property<Guid?>("UserId")
 21293                        .HasColumnType("TEXT");
 21294
 21295                    b.Property<bool>("Value")
 21296                        .HasColumnType("INTEGER");
 21297
 21298                    b.HasKey("Id");
 21299
 21300                    b.HasIndex("UserId", "Kind")
 21301                        .IsUnique()
 21302                        .HasFilter("[UserId] IS NOT NULL");
 21303
 21304                    b.ToTable("Permissions");
 21305                });
 306
 21307            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21308                {
 21309                    b.Property<int>("Id")
 21310                        .ValueGeneratedOnAdd()
 21311                        .HasColumnType("INTEGER");
 21312
 21313                    b.Property<int>("Kind")
 21314                        .HasColumnType("INTEGER");
 21315
 21316                    b.Property<Guid?>("Preference_Preferences_Guid")
 21317                        .HasColumnType("TEXT");
 21318
 21319                    b.Property<uint>("RowVersion")
 21320                        .IsConcurrencyToken()
 21321                        .HasColumnType("INTEGER");
 21322
 21323                    b.Property<Guid?>("UserId")
 21324                        .HasColumnType("TEXT");
 21325
 21326                    b.Property<string>("Value")
 21327                        .IsRequired()
 21328                        .HasMaxLength(65535)
 21329                        .HasColumnType("TEXT");
 21330
 21331                    b.HasKey("Id");
 21332
 21333                    b.HasIndex("UserId", "Kind")
 21334                        .IsUnique()
 21335                        .HasFilter("[UserId] IS NOT NULL");
 21336
 21337                    b.ToTable("Preferences");
 21338                });
 339
 21340            modelBuilder.Entity("Jellyfin.Data.Entities.Security.ApiKey", b =>
 21341                {
 21342                    b.Property<int>("Id")
 21343                        .ValueGeneratedOnAdd()
 21344                        .HasColumnType("INTEGER");
 21345
 21346                    b.Property<string>("AccessToken")
 21347                        .IsRequired()
 21348                        .HasColumnType("TEXT");
 21349
 21350                    b.Property<DateTime>("DateCreated")
 21351                        .HasColumnType("TEXT");
 21352
 21353                    b.Property<DateTime>("DateLastActivity")
 21354                        .HasColumnType("TEXT");
 21355
 21356                    b.Property<string>("Name")
 21357                        .IsRequired()
 21358                        .HasMaxLength(64)
 21359                        .HasColumnType("TEXT");
 21360
 21361                    b.HasKey("Id");
 21362
 21363                    b.HasIndex("AccessToken")
 21364                        .IsUnique();
 21365
 21366                    b.ToTable("ApiKeys");
 21367                });
 368
 21369            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 21370                {
 21371                    b.Property<int>("Id")
 21372                        .ValueGeneratedOnAdd()
 21373                        .HasColumnType("INTEGER");
 21374
 21375                    b.Property<string>("AccessToken")
 21376                        .IsRequired()
 21377                        .HasColumnType("TEXT");
 21378
 21379                    b.Property<string>("AppName")
 21380                        .IsRequired()
 21381                        .HasMaxLength(64)
 21382                        .HasColumnType("TEXT");
 21383
 21384                    b.Property<string>("AppVersion")
 21385                        .IsRequired()
 21386                        .HasMaxLength(32)
 21387                        .HasColumnType("TEXT");
 21388
 21389                    b.Property<DateTime>("DateCreated")
 21390                        .HasColumnType("TEXT");
 21391
 21392                    b.Property<DateTime>("DateLastActivity")
 21393                        .HasColumnType("TEXT");
 21394
 21395                    b.Property<DateTime>("DateModified")
 21396                        .HasColumnType("TEXT");
 21397
 21398                    b.Property<string>("DeviceId")
 21399                        .IsRequired()
 21400                        .HasMaxLength(256)
 21401                        .HasColumnType("TEXT");
 21402
 21403                    b.Property<string>("DeviceName")
 21404                        .IsRequired()
 21405                        .HasMaxLength(64)
 21406                        .HasColumnType("TEXT");
 21407
 21408                    b.Property<bool>("IsActive")
 21409                        .HasColumnType("INTEGER");
 21410
 21411                    b.Property<Guid>("UserId")
 21412                        .HasColumnType("TEXT");
 21413
 21414                    b.HasKey("Id");
 21415
 21416                    b.HasIndex("DeviceId");
 21417
 21418                    b.HasIndex("AccessToken", "DateLastActivity");
 21419
 21420                    b.HasIndex("DeviceId", "DateLastActivity");
 21421
 21422                    b.HasIndex("UserId", "DeviceId");
 21423
 21424                    b.ToTable("Devices");
 21425                });
 426
 21427            modelBuilder.Entity("Jellyfin.Data.Entities.Security.DeviceOptions", b =>
 21428                {
 21429                    b.Property<int>("Id")
 21430                        .ValueGeneratedOnAdd()
 21431                        .HasColumnType("INTEGER");
 21432
 21433                    b.Property<string>("CustomName")
 21434                        .HasColumnType("TEXT");
 21435
 21436                    b.Property<string>("DeviceId")
 21437                        .IsRequired()
 21438                        .HasColumnType("TEXT");
 21439
 21440                    b.HasKey("Id");
 21441
 21442                    b.HasIndex("DeviceId")
 21443                        .IsUnique();
 21444
 21445                    b.ToTable("DeviceOptions");
 21446                });
 447
 21448            modelBuilder.Entity("Jellyfin.Data.Entities.TrickplayInfo", b =>
 21449                {
 21450                    b.Property<Guid>("ItemId")
 21451                        .HasColumnType("TEXT");
 21452
 21453                    b.Property<int>("Width")
 21454                        .HasColumnType("INTEGER");
 21455
 21456                    b.Property<int>("Bandwidth")
 21457                        .HasColumnType("INTEGER");
 21458
 21459                    b.Property<int>("Height")
 21460                        .HasColumnType("INTEGER");
 21461
 21462                    b.Property<int>("Interval")
 21463                        .HasColumnType("INTEGER");
 21464
 21465                    b.Property<int>("ThumbnailCount")
 21466                        .HasColumnType("INTEGER");
 21467
 21468                    b.Property<int>("TileHeight")
 21469                        .HasColumnType("INTEGER");
 21470
 21471                    b.Property<int>("TileWidth")
 21472                        .HasColumnType("INTEGER");
 21473
 21474                    b.HasKey("ItemId", "Width");
 21475
 21476                    b.ToTable("TrickplayInfos");
 21477                });
 478
 21479            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21480                {
 21481                    b.Property<Guid>("Id")
 21482                        .ValueGeneratedOnAdd()
 21483                        .HasColumnType("TEXT");
 21484
 21485                    b.Property<string>("AudioLanguagePreference")
 21486                        .HasMaxLength(255)
 21487                        .HasColumnType("TEXT");
 21488
 21489                    b.Property<string>("AuthenticationProviderId")
 21490                        .IsRequired()
 21491                        .HasMaxLength(255)
 21492                        .HasColumnType("TEXT");
 21493
 21494                    b.Property<bool>("DisplayCollectionsView")
 21495                        .HasColumnType("INTEGER");
 21496
 21497                    b.Property<bool>("DisplayMissingEpisodes")
 21498                        .HasColumnType("INTEGER");
 21499
 21500                    b.Property<bool>("EnableAutoLogin")
 21501                        .HasColumnType("INTEGER");
 21502
 21503                    b.Property<bool>("EnableLocalPassword")
 21504                        .HasColumnType("INTEGER");
 21505
 21506                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 21507                        .HasColumnType("INTEGER");
 21508
 21509                    b.Property<bool>("EnableUserPreferenceAccess")
 21510                        .HasColumnType("INTEGER");
 21511
 21512                    b.Property<bool>("HidePlayedInLatest")
 21513                        .HasColumnType("INTEGER");
 21514
 21515                    b.Property<long>("InternalId")
 21516                        .HasColumnType("INTEGER");
 21517
 21518                    b.Property<int>("InvalidLoginAttemptCount")
 21519                        .HasColumnType("INTEGER");
 21520
 21521                    b.Property<DateTime?>("LastActivityDate")
 21522                        .HasColumnType("TEXT");
 21523
 21524                    b.Property<DateTime?>("LastLoginDate")
 21525                        .HasColumnType("TEXT");
 21526
 21527                    b.Property<int?>("LoginAttemptsBeforeLockout")
 21528                        .HasColumnType("INTEGER");
 21529
 21530                    b.Property<int>("MaxActiveSessions")
 21531                        .HasColumnType("INTEGER");
 21532
 21533                    b.Property<int?>("MaxParentalAgeRating")
 21534                        .HasColumnType("INTEGER");
 21535
 21536                    b.Property<bool>("MustUpdatePassword")
 21537                        .HasColumnType("INTEGER");
 21538
 21539                    b.Property<string>("Password")
 21540                        .HasMaxLength(65535)
 21541                        .HasColumnType("TEXT");
 21542
 21543                    b.Property<string>("PasswordResetProviderId")
 21544                        .IsRequired()
 21545                        .HasMaxLength(255)
 21546                        .HasColumnType("TEXT");
 21547
 21548                    b.Property<bool>("PlayDefaultAudioTrack")
 21549                        .HasColumnType("INTEGER");
 21550
 21551                    b.Property<bool>("RememberAudioSelections")
 21552                        .HasColumnType("INTEGER");
 21553
 21554                    b.Property<bool>("RememberSubtitleSelections")
 21555                        .HasColumnType("INTEGER");
 21556
 21557                    b.Property<int?>("RemoteClientBitrateLimit")
 21558                        .HasColumnType("INTEGER");
 21559
 21560                    b.Property<uint>("RowVersion")
 21561                        .IsConcurrencyToken()
 21562                        .HasColumnType("INTEGER");
 21563
 21564                    b.Property<string>("SubtitleLanguagePreference")
 21565                        .HasMaxLength(255)
 21566                        .HasColumnType("TEXT");
 21567
 21568                    b.Property<int>("SubtitleMode")
 21569                        .HasColumnType("INTEGER");
 21570
 21571                    b.Property<int>("SyncPlayAccess")
 21572                        .HasColumnType("INTEGER");
 21573
 21574                    b.Property<string>("Username")
 21575                        .IsRequired()
 21576                        .HasMaxLength(255)
 21577                        .HasColumnType("TEXT")
 21578                        .UseCollation("NOCASE");
 21579
 21580                    b.HasKey("Id");
 21581
 21582                    b.HasIndex("Username")
 21583                        .IsUnique();
 21584
 21585                    b.ToTable("Users");
 21586                });
 587
 21588            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 21589                {
 21590                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21591                        .WithMany("AccessSchedules")
 21592                        .HasForeignKey("UserId")
 21593                        .OnDelete(DeleteBehavior.Cascade)
 21594                        .IsRequired();
 21595                });
 596
 21597            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21598                {
 21599                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21600                        .WithMany("DisplayPreferences")
 21601                        .HasForeignKey("UserId")
 21602                        .OnDelete(DeleteBehavior.Cascade)
 21603                        .IsRequired();
 21604                });
 605
 21606            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21607                {
 21608                    b.HasOne("Jellyfin.Data.Entities.DisplayPreferences", null)
 21609                        .WithMany("HomeSections")
 21610                        .HasForeignKey("DisplayPreferencesId")
 21611                        .OnDelete(DeleteBehavior.Cascade)
 21612                        .IsRequired();
 21613                });
 614
 21615            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21616                {
 21617                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21618                        .WithOne("ProfileImage")
 21619                        .HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId")
 21620                        .OnDelete(DeleteBehavior.Cascade);
 21621                });
 622
 21623            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21624                {
 21625                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21626                        .WithMany("ItemDisplayPreferences")
 21627                        .HasForeignKey("UserId")
 21628                        .OnDelete(DeleteBehavior.Cascade)
 21629                        .IsRequired();
 21630                });
 631
 21632            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21633                {
 21634                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21635                        .WithMany("Permissions")
 21636                        .HasForeignKey("UserId")
 21637                        .OnDelete(DeleteBehavior.Cascade);
 21638                });
 639
 21640            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21641                {
 21642                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21643                        .WithMany("Preferences")
 21644                        .HasForeignKey("UserId")
 21645                        .OnDelete(DeleteBehavior.Cascade);
 21646                });
 647
 21648            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 21649                {
 21650                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 21651                        .WithMany()
 21652                        .HasForeignKey("UserId")
 21653                        .OnDelete(DeleteBehavior.Cascade)
 21654                        .IsRequired();
 21655
 21656                    b.Navigation("User");
 21657                });
 658
 21659            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21660                {
 21661                    b.Navigation("HomeSections");
 21662                });
 663
 21664            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21665                {
 21666                    b.Navigation("AccessSchedules");
 21667
 21668                    b.Navigation("DisplayPreferences");
 21669
 21670                    b.Navigation("ItemDisplayPreferences");
 21671
 21672                    b.Navigation("Permissions");
 21673
 21674                    b.Navigation("Preferences");
 21675
 21676                    b.Navigation("ProfileImage");
 21677                });
 678#pragma warning restore 612, 618
 21679        }
 680    }
 681}