< Summary - Jellyfin

Line coverage
99%
Covered lines: 616
Uncovered lines: 5
Coverable lines: 621
Total lines: 685
Line coverage: 99.1%
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/20221022080052_AddIndexActivityLogsDateCreated.cs

#LineLine coverage
 1#pragma warning disable CS1591, SA1601
 2
 3using Microsoft.EntityFrameworkCore.Migrations;
 4
 5#nullable disable
 6
 7namespace Jellyfin.Server.Implementations.Migrations
 8{
 9    public partial class AddIndexActivityLogsDateCreated : Migration
 10    {
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.CreateIndex(
 2114                name: "IX_ActivityLogs_DateCreated",
 2115                schema: "jellyfin",
 2116                table: "ActivityLogs",
 2117                column: "DateCreated");
 2118        }
 19
 20        protected override void Down(MigrationBuilder migrationBuilder)
 21        {
 022            migrationBuilder.DropIndex(
 023                name: "IX_ActivityLogs_DateCreated",
 024                schema: "jellyfin",
 025                table: "ActivityLogs");
 026        }
 27    }
 28}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20221022080052_AddIndexActivityLogsDateCreated.Designer.cs

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