< Summary - Jellyfin

Line coverage
99%
Covered lines: 676
Uncovered lines: 3
Coverable lines: 679
Total lines: 746
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/20240729140605_AddMediaSegments.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 AddMediaSegments : Migration
 10    {
 11        /// <inheritdoc />
 12        protected override void Up(MigrationBuilder migrationBuilder)
 13        {
 2114            migrationBuilder.CreateTable(
 2115                name: "MediaSegments",
 2116                columns: table => new
 2117                {
 2118                    Id = table.Column<Guid>(type: "TEXT", nullable: false),
 2119                    ItemId = table.Column<Guid>(type: "TEXT", nullable: false),
 2120                    Type = table.Column<int>(type: "INTEGER", nullable: false),
 2121                    EndTicks = table.Column<long>(type: "INTEGER", nullable: false),
 2122                    StartTicks = table.Column<long>(type: "INTEGER", nullable: false),
 2123                    SegmentProviderId = table.Column<string>(type: "TEXT", nullable: false),
 2124                },
 2125                constraints: table =>
 2126                {
 2127                    table.PrimaryKey("PK_MediaSegments", x => x.Id);
 2128                });
 2129        }
 30
 31        /// <inheritdoc />
 32        protected override void Down(MigrationBuilder migrationBuilder)
 33        {
 034            migrationBuilder.DropTable(
 035                name: "MediaSegments");
 036        }
 37    }
 38}

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