< Summary - Jellyfin

Line coverage
98%
Covered lines: 674
Uncovered lines: 8
Coverable lines: 682
Total lines: 748
Line coverage: 98.8%
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/20240928082930_MarkSegmentProviderIdNonNullable.cs

#LineLine coverage
 1using Microsoft.EntityFrameworkCore.Migrations;
 2
 3#nullable disable
 4
 5namespace Jellyfin.Server.Implementations.Migrations
 6{
 7    /// <inheritdoc />
 8    public partial class MarkSegmentProviderIdNonNullable : Migration
 9    {
 10        /// <inheritdoc />
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.AlterColumn<string>(
 2114                name: "SegmentProviderId",
 2115                table: "MediaSegments",
 2116                type: "TEXT",
 2117                nullable: false,
 2118                defaultValue: string.Empty,
 2119                oldClrType: typeof(string),
 2120                oldType: "TEXT",
 2121                oldNullable: true);
 2122        }
 23
 24        /// <inheritdoc />
 25        protected override void Down(MigrationBuilder migrationBuilder)
 26        {
 027            migrationBuilder.AlterColumn<string>(
 028                name: "SegmentProviderId",
 029                table: "MediaSegments",
 030                type: "TEXT",
 031                nullable: true,
 032                oldClrType: typeof(string),
 033                oldType: "TEXT");
 034        }
 35    }
 36}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20240928082930_MarkSegmentProviderIdNonNullable.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("20240928082930_MarkSegmentProviderIdNonNullable")]
 15    partial class MarkSegmentProviderIdNonNullable
 16    {
 17        /// <inheritdoc />
 18        protected override void BuildTargetModel(ModelBuilder modelBuilder)
 19        {
 20#pragma warning disable 612, 618
 2121            modelBuilder.HasAnnotation("ProductVersion", "8.0.8");
 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.MediaSegment", b =>
 21277                {
 21278                    b.Property<Guid>("Id")
 21279                        .ValueGeneratedOnAdd()
 21280                        .HasColumnType("TEXT");
 21281
 21282                    b.Property<long>("EndTicks")
 21283                        .HasColumnType("INTEGER");
 21284
 21285                    b.Property<Guid>("ItemId")
 21286                        .HasColumnType("TEXT");
 21287
 21288                    b.Property<string>("SegmentProviderId")
 21289                        .IsRequired()
 21290                        .HasColumnType("TEXT");
 21291
 21292                    b.Property<long>("StartTicks")
 21293                        .HasColumnType("INTEGER");
 21294
 21295                    b.Property<int>("Type")
 21296                        .HasColumnType("INTEGER");
 21297
 21298                    b.HasKey("Id");
 21299
 21300                    b.ToTable("MediaSegments");
 21301                });
 302
 21303            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21304                {
 21305                    b.Property<int>("Id")
 21306                        .ValueGeneratedOnAdd()
 21307                        .HasColumnType("INTEGER");
 21308
 21309                    b.Property<int>("Kind")
 21310                        .HasColumnType("INTEGER");
 21311
 21312                    b.Property<Guid?>("Permission_Permissions_Guid")
 21313                        .HasColumnType("TEXT");
 21314
 21315                    b.Property<uint>("RowVersion")
 21316                        .IsConcurrencyToken()
 21317                        .HasColumnType("INTEGER");
 21318
 21319                    b.Property<Guid?>("UserId")
 21320                        .HasColumnType("TEXT");
 21321
 21322                    b.Property<bool>("Value")
 21323                        .HasColumnType("INTEGER");
 21324
 21325                    b.HasKey("Id");
 21326
 21327                    b.HasIndex("UserId", "Kind")
 21328                        .IsUnique()
 21329                        .HasFilter("[UserId] IS NOT NULL");
 21330
 21331                    b.ToTable("Permissions");
 21332                });
 333
 21334            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21335                {
 21336                    b.Property<int>("Id")
 21337                        .ValueGeneratedOnAdd()
 21338                        .HasColumnType("INTEGER");
 21339
 21340                    b.Property<int>("Kind")
 21341                        .HasColumnType("INTEGER");
 21342
 21343                    b.Property<Guid?>("Preference_Preferences_Guid")
 21344                        .HasColumnType("TEXT");
 21345
 21346                    b.Property<uint>("RowVersion")
 21347                        .IsConcurrencyToken()
 21348                        .HasColumnType("INTEGER");
 21349
 21350                    b.Property<Guid?>("UserId")
 21351                        .HasColumnType("TEXT");
 21352
 21353                    b.Property<string>("Value")
 21354                        .IsRequired()
 21355                        .HasMaxLength(65535)
 21356                        .HasColumnType("TEXT");
 21357
 21358                    b.HasKey("Id");
 21359
 21360                    b.HasIndex("UserId", "Kind")
 21361                        .IsUnique()
 21362                        .HasFilter("[UserId] IS NOT NULL");
 21363
 21364                    b.ToTable("Preferences");
 21365                });
 366
 21367            modelBuilder.Entity("Jellyfin.Data.Entities.Security.ApiKey", b =>
 21368                {
 21369                    b.Property<int>("Id")
 21370                        .ValueGeneratedOnAdd()
 21371                        .HasColumnType("INTEGER");
 21372
 21373                    b.Property<string>("AccessToken")
 21374                        .IsRequired()
 21375                        .HasColumnType("TEXT");
 21376
 21377                    b.Property<DateTime>("DateCreated")
 21378                        .HasColumnType("TEXT");
 21379
 21380                    b.Property<DateTime>("DateLastActivity")
 21381                        .HasColumnType("TEXT");
 21382
 21383                    b.Property<string>("Name")
 21384                        .IsRequired()
 21385                        .HasMaxLength(64)
 21386                        .HasColumnType("TEXT");
 21387
 21388                    b.HasKey("Id");
 21389
 21390                    b.HasIndex("AccessToken")
 21391                        .IsUnique();
 21392
 21393                    b.ToTable("ApiKeys");
 21394                });
 395
 21396            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 21397                {
 21398                    b.Property<int>("Id")
 21399                        .ValueGeneratedOnAdd()
 21400                        .HasColumnType("INTEGER");
 21401
 21402                    b.Property<string>("AccessToken")
 21403                        .IsRequired()
 21404                        .HasColumnType("TEXT");
 21405
 21406                    b.Property<string>("AppName")
 21407                        .IsRequired()
 21408                        .HasMaxLength(64)
 21409                        .HasColumnType("TEXT");
 21410
 21411                    b.Property<string>("AppVersion")
 21412                        .IsRequired()
 21413                        .HasMaxLength(32)
 21414                        .HasColumnType("TEXT");
 21415
 21416                    b.Property<DateTime>("DateCreated")
 21417                        .HasColumnType("TEXT");
 21418
 21419                    b.Property<DateTime>("DateLastActivity")
 21420                        .HasColumnType("TEXT");
 21421
 21422                    b.Property<DateTime>("DateModified")
 21423                        .HasColumnType("TEXT");
 21424
 21425                    b.Property<string>("DeviceId")
 21426                        .IsRequired()
 21427                        .HasMaxLength(256)
 21428                        .HasColumnType("TEXT");
 21429
 21430                    b.Property<string>("DeviceName")
 21431                        .IsRequired()
 21432                        .HasMaxLength(64)
 21433                        .HasColumnType("TEXT");
 21434
 21435                    b.Property<bool>("IsActive")
 21436                        .HasColumnType("INTEGER");
 21437
 21438                    b.Property<Guid>("UserId")
 21439                        .HasColumnType("TEXT");
 21440
 21441                    b.HasKey("Id");
 21442
 21443                    b.HasIndex("DeviceId");
 21444
 21445                    b.HasIndex("AccessToken", "DateLastActivity");
 21446
 21447                    b.HasIndex("DeviceId", "DateLastActivity");
 21448
 21449                    b.HasIndex("UserId", "DeviceId");
 21450
 21451                    b.ToTable("Devices");
 21452                });
 453
 21454            modelBuilder.Entity("Jellyfin.Data.Entities.Security.DeviceOptions", b =>
 21455                {
 21456                    b.Property<int>("Id")
 21457                        .ValueGeneratedOnAdd()
 21458                        .HasColumnType("INTEGER");
 21459
 21460                    b.Property<string>("CustomName")
 21461                        .HasColumnType("TEXT");
 21462
 21463                    b.Property<string>("DeviceId")
 21464                        .IsRequired()
 21465                        .HasColumnType("TEXT");
 21466
 21467                    b.HasKey("Id");
 21468
 21469                    b.HasIndex("DeviceId")
 21470                        .IsUnique();
 21471
 21472                    b.ToTable("DeviceOptions");
 21473                });
 474
 21475            modelBuilder.Entity("Jellyfin.Data.Entities.TrickplayInfo", b =>
 21476                {
 21477                    b.Property<Guid>("ItemId")
 21478                        .HasColumnType("TEXT");
 21479
 21480                    b.Property<int>("Width")
 21481                        .HasColumnType("INTEGER");
 21482
 21483                    b.Property<int>("Bandwidth")
 21484                        .HasColumnType("INTEGER");
 21485
 21486                    b.Property<int>("Height")
 21487                        .HasColumnType("INTEGER");
 21488
 21489                    b.Property<int>("Interval")
 21490                        .HasColumnType("INTEGER");
 21491
 21492                    b.Property<int>("ThumbnailCount")
 21493                        .HasColumnType("INTEGER");
 21494
 21495                    b.Property<int>("TileHeight")
 21496                        .HasColumnType("INTEGER");
 21497
 21498                    b.Property<int>("TileWidth")
 21499                        .HasColumnType("INTEGER");
 21500
 21501                    b.HasKey("ItemId", "Width");
 21502
 21503                    b.ToTable("TrickplayInfos");
 21504                });
 505
 21506            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21507                {
 21508                    b.Property<Guid>("Id")
 21509                        .ValueGeneratedOnAdd()
 21510                        .HasColumnType("TEXT");
 21511
 21512                    b.Property<string>("AudioLanguagePreference")
 21513                        .HasMaxLength(255)
 21514                        .HasColumnType("TEXT");
 21515
 21516                    b.Property<string>("AuthenticationProviderId")
 21517                        .IsRequired()
 21518                        .HasMaxLength(255)
 21519                        .HasColumnType("TEXT");
 21520
 21521                    b.Property<string>("CastReceiverId")
 21522                        .HasMaxLength(32)
 21523                        .HasColumnType("TEXT");
 21524
 21525                    b.Property<bool>("DisplayCollectionsView")
 21526                        .HasColumnType("INTEGER");
 21527
 21528                    b.Property<bool>("DisplayMissingEpisodes")
 21529                        .HasColumnType("INTEGER");
 21530
 21531                    b.Property<bool>("EnableAutoLogin")
 21532                        .HasColumnType("INTEGER");
 21533
 21534                    b.Property<bool>("EnableLocalPassword")
 21535                        .HasColumnType("INTEGER");
 21536
 21537                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 21538                        .HasColumnType("INTEGER");
 21539
 21540                    b.Property<bool>("EnableUserPreferenceAccess")
 21541                        .HasColumnType("INTEGER");
 21542
 21543                    b.Property<bool>("HidePlayedInLatest")
 21544                        .HasColumnType("INTEGER");
 21545
 21546                    b.Property<long>("InternalId")
 21547                        .HasColumnType("INTEGER");
 21548
 21549                    b.Property<int>("InvalidLoginAttemptCount")
 21550                        .HasColumnType("INTEGER");
 21551
 21552                    b.Property<DateTime?>("LastActivityDate")
 21553                        .HasColumnType("TEXT");
 21554
 21555                    b.Property<DateTime?>("LastLoginDate")
 21556                        .HasColumnType("TEXT");
 21557
 21558                    b.Property<int?>("LoginAttemptsBeforeLockout")
 21559                        .HasColumnType("INTEGER");
 21560
 21561                    b.Property<int>("MaxActiveSessions")
 21562                        .HasColumnType("INTEGER");
 21563
 21564                    b.Property<int?>("MaxParentalAgeRating")
 21565                        .HasColumnType("INTEGER");
 21566
 21567                    b.Property<bool>("MustUpdatePassword")
 21568                        .HasColumnType("INTEGER");
 21569
 21570                    b.Property<string>("Password")
 21571                        .HasMaxLength(65535)
 21572                        .HasColumnType("TEXT");
 21573
 21574                    b.Property<string>("PasswordResetProviderId")
 21575                        .IsRequired()
 21576                        .HasMaxLength(255)
 21577                        .HasColumnType("TEXT");
 21578
 21579                    b.Property<bool>("PlayDefaultAudioTrack")
 21580                        .HasColumnType("INTEGER");
 21581
 21582                    b.Property<bool>("RememberAudioSelections")
 21583                        .HasColumnType("INTEGER");
 21584
 21585                    b.Property<bool>("RememberSubtitleSelections")
 21586                        .HasColumnType("INTEGER");
 21587
 21588                    b.Property<int?>("RemoteClientBitrateLimit")
 21589                        .HasColumnType("INTEGER");
 21590
 21591                    b.Property<uint>("RowVersion")
 21592                        .IsConcurrencyToken()
 21593                        .HasColumnType("INTEGER");
 21594
 21595                    b.Property<string>("SubtitleLanguagePreference")
 21596                        .HasMaxLength(255)
 21597                        .HasColumnType("TEXT");
 21598
 21599                    b.Property<int>("SubtitleMode")
 21600                        .HasColumnType("INTEGER");
 21601
 21602                    b.Property<int>("SyncPlayAccess")
 21603                        .HasColumnType("INTEGER");
 21604
 21605                    b.Property<string>("Username")
 21606                        .IsRequired()
 21607                        .HasMaxLength(255)
 21608                        .HasColumnType("TEXT")
 21609                        .UseCollation("NOCASE");
 21610
 21611                    b.HasKey("Id");
 21612
 21613                    b.HasIndex("Username")
 21614                        .IsUnique();
 21615
 21616                    b.ToTable("Users");
 21617                });
 618
 21619            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 21620                {
 21621                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21622                        .WithMany("AccessSchedules")
 21623                        .HasForeignKey("UserId")
 21624                        .OnDelete(DeleteBehavior.Cascade)
 21625                        .IsRequired();
 21626                });
 627
 21628            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21629                {
 21630                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21631                        .WithMany("DisplayPreferences")
 21632                        .HasForeignKey("UserId")
 21633                        .OnDelete(DeleteBehavior.Cascade)
 21634                        .IsRequired();
 21635                });
 636
 21637            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21638                {
 21639                    b.HasOne("Jellyfin.Data.Entities.DisplayPreferences", null)
 21640                        .WithMany("HomeSections")
 21641                        .HasForeignKey("DisplayPreferencesId")
 21642                        .OnDelete(DeleteBehavior.Cascade)
 21643                        .IsRequired();
 21644                });
 645
 21646            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21647                {
 21648                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21649                        .WithOne("ProfileImage")
 21650                        .HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId")
 21651                        .OnDelete(DeleteBehavior.Cascade);
 21652                });
 653
 21654            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21655                {
 21656                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21657                        .WithMany("ItemDisplayPreferences")
 21658                        .HasForeignKey("UserId")
 21659                        .OnDelete(DeleteBehavior.Cascade)
 21660                        .IsRequired();
 21661                });
 662
 21663            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21664                {
 21665                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21666                        .WithMany("Permissions")
 21667                        .HasForeignKey("UserId")
 21668                        .OnDelete(DeleteBehavior.Cascade);
 21669                });
 670
 21671            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21672                {
 21673                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21674                        .WithMany("Preferences")
 21675                        .HasForeignKey("UserId")
 21676                        .OnDelete(DeleteBehavior.Cascade);
 21677                });
 678
 21679            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 21680                {
 21681                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 21682                        .WithMany()
 21683                        .HasForeignKey("UserId")
 21684                        .OnDelete(DeleteBehavior.Cascade)
 21685                        .IsRequired();
 21686
 21687                    b.Navigation("User");
 21688                });
 689
 21690            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21691                {
 21692                    b.Navigation("HomeSections");
 21693                });
 694
 21695            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21696                {
 21697                    b.Navigation("AccessSchedules");
 21698
 21699                    b.Navigation("DisplayPreferences");
 21700
 21701                    b.Navigation("ItemDisplayPreferences");
 21702
 21703                    b.Navigation("Permissions");
 21704
 21705                    b.Navigation("Preferences");
 21706
 21707                    b.Navigation("ProfileImage");
 21708                });
 709#pragma warning restore 612, 618
 21710        }
 711    }
 712}