< Summary - Jellyfin

Line coverage
99%
Covered lines: 1528
Uncovered lines: 8
Coverable lines: 1536
Total lines: 1632
Line coverage: 99.4%
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/20241113133548_EnforceUniqueItemValue.cs

#LineLine coverage
 1using Microsoft.EntityFrameworkCore.Migrations;
 2
 3#nullable disable
 4
 5namespace Jellyfin.Server.Implementations.Migrations
 6{
 7    /// <inheritdoc />
 8    public partial class EnforceUniqueItemValue : Migration
 9    {
 10        /// <inheritdoc />
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.DropIndex(
 2114                name: "IX_ItemValues_Type_CleanValue",
 2115                table: "ItemValues");
 16
 2117            migrationBuilder.CreateIndex(
 2118                name: "IX_ItemValues_Type_CleanValue",
 2119                table: "ItemValues",
 2120                columns: new[] { "Type", "CleanValue" },
 2121                unique: true);
 2122        }
 23
 24        /// <inheritdoc />
 25        protected override void Down(MigrationBuilder migrationBuilder)
 26        {
 027            migrationBuilder.DropIndex(
 028                name: "IX_ItemValues_Type_CleanValue",
 029                table: "ItemValues");
 30
 031            migrationBuilder.CreateIndex(
 032                name: "IX_ItemValues_Type_CleanValue",
 033                table: "ItemValues",
 034                columns: new[] { "Type", "CleanValue" });
 035        }
 36    }
 37}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20241113133548_EnforceUniqueItemValue.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("20241113133548_EnforceUniqueItemValue")]
 15    partial class EnforceUniqueItemValue
 16    {
 17        /// <inheritdoc />
 18        protected override void BuildTargetModel(ModelBuilder modelBuilder)
 19        {
 20#pragma warning disable 612, 618
 2121            modelBuilder.HasAnnotation("ProductVersion", "8.0.10");
 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.AncestorId", b =>
 2197                {
 2198                    b.Property<Guid>("ItemId")
 2199                        .HasColumnType("TEXT");
 21100
 21101                    b.Property<Guid>("ParentItemId")
 21102                        .HasColumnType("TEXT");
 21103
 21104                    b.HasKey("ItemId", "ParentItemId");
 21105
 21106                    b.HasIndex("ParentItemId");
 21107
 21108                    b.ToTable("AncestorIds");
 21109                });
 110
 21111            modelBuilder.Entity("Jellyfin.Data.Entities.AttachmentStreamInfo", b =>
 21112                {
 21113                    b.Property<Guid>("ItemId")
 21114                        .HasColumnType("TEXT");
 21115
 21116                    b.Property<int>("Index")
 21117                        .HasColumnType("INTEGER");
 21118
 21119                    b.Property<string>("Codec")
 21120                        .IsRequired()
 21121                        .HasColumnType("TEXT");
 21122
 21123                    b.Property<string>("CodecTag")
 21124                        .HasColumnType("TEXT");
 21125
 21126                    b.Property<string>("Comment")
 21127                        .HasColumnType("TEXT");
 21128
 21129                    b.Property<string>("Filename")
 21130                        .HasColumnType("TEXT");
 21131
 21132                    b.Property<string>("MimeType")
 21133                        .HasColumnType("TEXT");
 21134
 21135                    b.HasKey("ItemId", "Index");
 21136
 21137                    b.ToTable("AttachmentStreamInfos");
 21138                });
 139
 21140            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemEntity", b =>
 21141                {
 21142                    b.Property<Guid>("Id")
 21143                        .ValueGeneratedOnAdd()
 21144                        .HasColumnType("TEXT");
 21145
 21146                    b.Property<string>("Album")
 21147                        .HasColumnType("TEXT");
 21148
 21149                    b.Property<string>("AlbumArtists")
 21150                        .HasColumnType("TEXT");
 21151
 21152                    b.Property<string>("Artists")
 21153                        .HasColumnType("TEXT");
 21154
 21155                    b.Property<int?>("Audio")
 21156                        .HasColumnType("INTEGER");
 21157
 21158                    b.Property<string>("ChannelId")
 21159                        .HasColumnType("TEXT");
 21160
 21161                    b.Property<string>("CleanName")
 21162                        .HasColumnType("TEXT");
 21163
 21164                    b.Property<float?>("CommunityRating")
 21165                        .HasColumnType("REAL");
 21166
 21167                    b.Property<float?>("CriticRating")
 21168                        .HasColumnType("REAL");
 21169
 21170                    b.Property<string>("CustomRating")
 21171                        .HasColumnType("TEXT");
 21172
 21173                    b.Property<string>("Data")
 21174                        .HasColumnType("TEXT");
 21175
 21176                    b.Property<DateTime?>("DateCreated")
 21177                        .HasColumnType("TEXT");
 21178
 21179                    b.Property<DateTime?>("DateLastMediaAdded")
 21180                        .HasColumnType("TEXT");
 21181
 21182                    b.Property<DateTime?>("DateLastRefreshed")
 21183                        .HasColumnType("TEXT");
 21184
 21185                    b.Property<DateTime?>("DateLastSaved")
 21186                        .HasColumnType("TEXT");
 21187
 21188                    b.Property<DateTime?>("DateModified")
 21189                        .HasColumnType("TEXT");
 21190
 21191                    b.Property<DateTime>("EndDate")
 21192                        .HasColumnType("TEXT");
 21193
 21194                    b.Property<string>("EpisodeTitle")
 21195                        .HasColumnType("TEXT");
 21196
 21197                    b.Property<string>("ExternalId")
 21198                        .HasColumnType("TEXT");
 21199
 21200                    b.Property<string>("ExternalSeriesId")
 21201                        .HasColumnType("TEXT");
 21202
 21203                    b.Property<string>("ExternalServiceId")
 21204                        .HasColumnType("TEXT");
 21205
 21206                    b.Property<string>("ExtraIds")
 21207                        .HasColumnType("TEXT");
 21208
 21209                    b.Property<int?>("ExtraType")
 21210                        .HasColumnType("INTEGER");
 21211
 21212                    b.Property<string>("ForcedSortName")
 21213                        .HasColumnType("TEXT");
 21214
 21215                    b.Property<string>("Genres")
 21216                        .HasColumnType("TEXT");
 21217
 21218                    b.Property<int?>("Height")
 21219                        .HasColumnType("INTEGER");
 21220
 21221                    b.Property<int?>("IndexNumber")
 21222                        .HasColumnType("INTEGER");
 21223
 21224                    b.Property<int?>("InheritedParentalRatingValue")
 21225                        .HasColumnType("INTEGER");
 21226
 21227                    b.Property<bool>("IsFolder")
 21228                        .HasColumnType("INTEGER");
 21229
 21230                    b.Property<bool>("IsInMixedFolder")
 21231                        .HasColumnType("INTEGER");
 21232
 21233                    b.Property<bool>("IsLocked")
 21234                        .HasColumnType("INTEGER");
 21235
 21236                    b.Property<bool>("IsMovie")
 21237                        .HasColumnType("INTEGER");
 21238
 21239                    b.Property<bool>("IsRepeat")
 21240                        .HasColumnType("INTEGER");
 21241
 21242                    b.Property<bool>("IsSeries")
 21243                        .HasColumnType("INTEGER");
 21244
 21245                    b.Property<bool>("IsVirtualItem")
 21246                        .HasColumnType("INTEGER");
 21247
 21248                    b.Property<float?>("LUFS")
 21249                        .HasColumnType("REAL");
 21250
 21251                    b.Property<string>("MediaType")
 21252                        .HasColumnType("TEXT");
 21253
 21254                    b.Property<string>("Name")
 21255                        .HasColumnType("TEXT");
 21256
 21257                    b.Property<float?>("NormalizationGain")
 21258                        .HasColumnType("REAL");
 21259
 21260                    b.Property<string>("OfficialRating")
 21261                        .HasColumnType("TEXT");
 21262
 21263                    b.Property<string>("OriginalTitle")
 21264                        .HasColumnType("TEXT");
 21265
 21266                    b.Property<string>("Overview")
 21267                        .HasColumnType("TEXT");
 21268
 21269                    b.Property<string>("OwnerId")
 21270                        .HasColumnType("TEXT");
 21271
 21272                    b.Property<Guid?>("ParentId")
 21273                        .HasColumnType("TEXT");
 21274
 21275                    b.Property<int?>("ParentIndexNumber")
 21276                        .HasColumnType("INTEGER");
 21277
 21278                    b.Property<string>("Path")
 21279                        .HasColumnType("TEXT");
 21280
 21281                    b.Property<string>("PreferredMetadataCountryCode")
 21282                        .HasColumnType("TEXT");
 21283
 21284                    b.Property<string>("PreferredMetadataLanguage")
 21285                        .HasColumnType("TEXT");
 21286
 21287                    b.Property<DateTime?>("PremiereDate")
 21288                        .HasColumnType("TEXT");
 21289
 21290                    b.Property<string>("PresentationUniqueKey")
 21291                        .HasColumnType("TEXT");
 21292
 21293                    b.Property<string>("PrimaryVersionId")
 21294                        .HasColumnType("TEXT");
 21295
 21296                    b.Property<string>("ProductionLocations")
 21297                        .HasColumnType("TEXT");
 21298
 21299                    b.Property<int?>("ProductionYear")
 21300                        .HasColumnType("INTEGER");
 21301
 21302                    b.Property<long?>("RunTimeTicks")
 21303                        .HasColumnType("INTEGER");
 21304
 21305                    b.Property<Guid?>("SeasonId")
 21306                        .HasColumnType("TEXT");
 21307
 21308                    b.Property<string>("SeasonName")
 21309                        .HasColumnType("TEXT");
 21310
 21311                    b.Property<Guid?>("SeriesId")
 21312                        .HasColumnType("TEXT");
 21313
 21314                    b.Property<string>("SeriesName")
 21315                        .HasColumnType("TEXT");
 21316
 21317                    b.Property<string>("SeriesPresentationUniqueKey")
 21318                        .HasColumnType("TEXT");
 21319
 21320                    b.Property<string>("ShowId")
 21321                        .HasColumnType("TEXT");
 21322
 21323                    b.Property<long?>("Size")
 21324                        .HasColumnType("INTEGER");
 21325
 21326                    b.Property<string>("SortName")
 21327                        .HasColumnType("TEXT");
 21328
 21329                    b.Property<DateTime>("StartDate")
 21330                        .HasColumnType("TEXT");
 21331
 21332                    b.Property<string>("Studios")
 21333                        .HasColumnType("TEXT");
 21334
 21335                    b.Property<string>("Tagline")
 21336                        .HasColumnType("TEXT");
 21337
 21338                    b.Property<string>("Tags")
 21339                        .HasColumnType("TEXT");
 21340
 21341                    b.Property<Guid?>("TopParentId")
 21342                        .HasColumnType("TEXT");
 21343
 21344                    b.Property<int?>("TotalBitrate")
 21345                        .HasColumnType("INTEGER");
 21346
 21347                    b.Property<string>("Type")
 21348                        .IsRequired()
 21349                        .HasColumnType("TEXT");
 21350
 21351                    b.Property<string>("UnratedType")
 21352                        .HasColumnType("TEXT");
 21353
 21354                    b.Property<int?>("Width")
 21355                        .HasColumnType("INTEGER");
 21356
 21357                    b.HasKey("Id");
 21358
 21359                    b.HasIndex("ParentId");
 21360
 21361                    b.HasIndex("Path");
 21362
 21363                    b.HasIndex("PresentationUniqueKey");
 21364
 21365                    b.HasIndex("TopParentId", "Id");
 21366
 21367                    b.HasIndex("Type", "TopParentId", "Id");
 21368
 21369                    b.HasIndex("Type", "TopParentId", "PresentationUniqueKey");
 21370
 21371                    b.HasIndex("Type", "TopParentId", "StartDate");
 21372
 21373                    b.HasIndex("Id", "Type", "IsFolder", "IsVirtualItem");
 21374
 21375                    b.HasIndex("MediaType", "TopParentId", "IsVirtualItem", "PresentationUniqueKey");
 21376
 21377                    b.HasIndex("Type", "SeriesPresentationUniqueKey", "IsFolder", "IsVirtualItem");
 21378
 21379                    b.HasIndex("Type", "SeriesPresentationUniqueKey", "PresentationUniqueKey", "SortName");
 21380
 21381                    b.HasIndex("IsFolder", "TopParentId", "IsVirtualItem", "PresentationUniqueKey", "DateCreated");
 21382
 21383                    b.HasIndex("Type", "TopParentId", "IsVirtualItem", "PresentationUniqueKey", "DateCreated");
 21384
 21385                    b.ToTable("BaseItems");
 21386                });
 387
 21388            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemImageInfo", b =>
 21389                {
 21390                    b.Property<Guid>("Id")
 21391                        .ValueGeneratedOnAdd()
 21392                        .HasColumnType("TEXT");
 21393
 21394                    b.Property<byte[]>("Blurhash")
 21395                        .HasColumnType("BLOB");
 21396
 21397                    b.Property<DateTime>("DateModified")
 21398                        .HasColumnType("TEXT");
 21399
 21400                    b.Property<int>("Height")
 21401                        .HasColumnType("INTEGER");
 21402
 21403                    b.Property<int>("ImageType")
 21404                        .HasColumnType("INTEGER");
 21405
 21406                    b.Property<Guid>("ItemId")
 21407                        .HasColumnType("TEXT");
 21408
 21409                    b.Property<string>("Path")
 21410                        .IsRequired()
 21411                        .HasColumnType("TEXT");
 21412
 21413                    b.Property<int>("Width")
 21414                        .HasColumnType("INTEGER");
 21415
 21416                    b.HasKey("Id");
 21417
 21418                    b.HasIndex("ItemId");
 21419
 21420                    b.ToTable("BaseItemImageInfos");
 21421                });
 422
 21423            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemMetadataField", b =>
 21424                {
 21425                    b.Property<int>("Id")
 21426                        .HasColumnType("INTEGER");
 21427
 21428                    b.Property<Guid>("ItemId")
 21429                        .HasColumnType("TEXT");
 21430
 21431                    b.HasKey("Id", "ItemId");
 21432
 21433                    b.HasIndex("ItemId");
 21434
 21435                    b.ToTable("BaseItemMetadataFields");
 21436                });
 437
 21438            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemProvider", b =>
 21439                {
 21440                    b.Property<Guid>("ItemId")
 21441                        .HasColumnType("TEXT");
 21442
 21443                    b.Property<string>("ProviderId")
 21444                        .HasColumnType("TEXT");
 21445
 21446                    b.Property<string>("ProviderValue")
 21447                        .IsRequired()
 21448                        .HasColumnType("TEXT");
 21449
 21450                    b.HasKey("ItemId", "ProviderId");
 21451
 21452                    b.HasIndex("ProviderId", "ProviderValue", "ItemId");
 21453
 21454                    b.ToTable("BaseItemProviders");
 21455                });
 456
 21457            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemTrailerType", b =>
 21458                {
 21459                    b.Property<int>("Id")
 21460                        .HasColumnType("INTEGER");
 21461
 21462                    b.Property<Guid>("ItemId")
 21463                        .HasColumnType("TEXT");
 21464
 21465                    b.HasKey("Id", "ItemId");
 21466
 21467                    b.HasIndex("ItemId");
 21468
 21469                    b.ToTable("BaseItemTrailerTypes");
 21470                });
 471
 21472            modelBuilder.Entity("Jellyfin.Data.Entities.Chapter", b =>
 21473                {
 21474                    b.Property<Guid>("ItemId")
 21475                        .HasColumnType("TEXT");
 21476
 21477                    b.Property<int>("ChapterIndex")
 21478                        .HasColumnType("INTEGER");
 21479
 21480                    b.Property<DateTime?>("ImageDateModified")
 21481                        .HasColumnType("TEXT");
 21482
 21483                    b.Property<string>("ImagePath")
 21484                        .HasColumnType("TEXT");
 21485
 21486                    b.Property<string>("Name")
 21487                        .HasColumnType("TEXT");
 21488
 21489                    b.Property<long>("StartPositionTicks")
 21490                        .HasColumnType("INTEGER");
 21491
 21492                    b.HasKey("ItemId", "ChapterIndex");
 21493
 21494                    b.ToTable("Chapters");
 21495                });
 496
 21497            modelBuilder.Entity("Jellyfin.Data.Entities.CustomItemDisplayPreferences", b =>
 21498                {
 21499                    b.Property<int>("Id")
 21500                        .ValueGeneratedOnAdd()
 21501                        .HasColumnType("INTEGER");
 21502
 21503                    b.Property<string>("Client")
 21504                        .IsRequired()
 21505                        .HasMaxLength(32)
 21506                        .HasColumnType("TEXT");
 21507
 21508                    b.Property<Guid>("ItemId")
 21509                        .HasColumnType("TEXT");
 21510
 21511                    b.Property<string>("Key")
 21512                        .IsRequired()
 21513                        .HasColumnType("TEXT");
 21514
 21515                    b.Property<Guid>("UserId")
 21516                        .HasColumnType("TEXT");
 21517
 21518                    b.Property<string>("Value")
 21519                        .HasColumnType("TEXT");
 21520
 21521                    b.HasKey("Id");
 21522
 21523                    b.HasIndex("UserId", "ItemId", "Client", "Key")
 21524                        .IsUnique();
 21525
 21526                    b.ToTable("CustomItemDisplayPreferences");
 21527                });
 528
 21529            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21530                {
 21531                    b.Property<int>("Id")
 21532                        .ValueGeneratedOnAdd()
 21533                        .HasColumnType("INTEGER");
 21534
 21535                    b.Property<int>("ChromecastVersion")
 21536                        .HasColumnType("INTEGER");
 21537
 21538                    b.Property<string>("Client")
 21539                        .IsRequired()
 21540                        .HasMaxLength(32)
 21541                        .HasColumnType("TEXT");
 21542
 21543                    b.Property<string>("DashboardTheme")
 21544                        .HasMaxLength(32)
 21545                        .HasColumnType("TEXT");
 21546
 21547                    b.Property<bool>("EnableNextVideoInfoOverlay")
 21548                        .HasColumnType("INTEGER");
 21549
 21550                    b.Property<int?>("IndexBy")
 21551                        .HasColumnType("INTEGER");
 21552
 21553                    b.Property<Guid>("ItemId")
 21554                        .HasColumnType("TEXT");
 21555
 21556                    b.Property<int>("ScrollDirection")
 21557                        .HasColumnType("INTEGER");
 21558
 21559                    b.Property<bool>("ShowBackdrop")
 21560                        .HasColumnType("INTEGER");
 21561
 21562                    b.Property<bool>("ShowSidebar")
 21563                        .HasColumnType("INTEGER");
 21564
 21565                    b.Property<int>("SkipBackwardLength")
 21566                        .HasColumnType("INTEGER");
 21567
 21568                    b.Property<int>("SkipForwardLength")
 21569                        .HasColumnType("INTEGER");
 21570
 21571                    b.Property<string>("TvHome")
 21572                        .HasMaxLength(32)
 21573                        .HasColumnType("TEXT");
 21574
 21575                    b.Property<Guid>("UserId")
 21576                        .HasColumnType("TEXT");
 21577
 21578                    b.HasKey("Id");
 21579
 21580                    b.HasIndex("UserId", "ItemId", "Client")
 21581                        .IsUnique();
 21582
 21583                    b.ToTable("DisplayPreferences");
 21584                });
 585
 21586            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21587                {
 21588                    b.Property<int>("Id")
 21589                        .ValueGeneratedOnAdd()
 21590                        .HasColumnType("INTEGER");
 21591
 21592                    b.Property<int>("DisplayPreferencesId")
 21593                        .HasColumnType("INTEGER");
 21594
 21595                    b.Property<int>("Order")
 21596                        .HasColumnType("INTEGER");
 21597
 21598                    b.Property<int>("Type")
 21599                        .HasColumnType("INTEGER");
 21600
 21601                    b.HasKey("Id");
 21602
 21603                    b.HasIndex("DisplayPreferencesId");
 21604
 21605                    b.ToTable("HomeSection");
 21606                });
 607
 21608            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21609                {
 21610                    b.Property<int>("Id")
 21611                        .ValueGeneratedOnAdd()
 21612                        .HasColumnType("INTEGER");
 21613
 21614                    b.Property<DateTime>("LastModified")
 21615                        .HasColumnType("TEXT");
 21616
 21617                    b.Property<string>("Path")
 21618                        .IsRequired()
 21619                        .HasMaxLength(512)
 21620                        .HasColumnType("TEXT");
 21621
 21622                    b.Property<Guid?>("UserId")
 21623                        .HasColumnType("TEXT");
 21624
 21625                    b.HasKey("Id");
 21626
 21627                    b.HasIndex("UserId")
 21628                        .IsUnique();
 21629
 21630                    b.ToTable("ImageInfos");
 21631                });
 632
 21633            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21634                {
 21635                    b.Property<int>("Id")
 21636                        .ValueGeneratedOnAdd()
 21637                        .HasColumnType("INTEGER");
 21638
 21639                    b.Property<string>("Client")
 21640                        .IsRequired()
 21641                        .HasMaxLength(32)
 21642                        .HasColumnType("TEXT");
 21643
 21644                    b.Property<int?>("IndexBy")
 21645                        .HasColumnType("INTEGER");
 21646
 21647                    b.Property<Guid>("ItemId")
 21648                        .HasColumnType("TEXT");
 21649
 21650                    b.Property<bool>("RememberIndexing")
 21651                        .HasColumnType("INTEGER");
 21652
 21653                    b.Property<bool>("RememberSorting")
 21654                        .HasColumnType("INTEGER");
 21655
 21656                    b.Property<string>("SortBy")
 21657                        .IsRequired()
 21658                        .HasMaxLength(64)
 21659                        .HasColumnType("TEXT");
 21660
 21661                    b.Property<int>("SortOrder")
 21662                        .HasColumnType("INTEGER");
 21663
 21664                    b.Property<Guid>("UserId")
 21665                        .HasColumnType("TEXT");
 21666
 21667                    b.Property<int>("ViewType")
 21668                        .HasColumnType("INTEGER");
 21669
 21670                    b.HasKey("Id");
 21671
 21672                    b.HasIndex("UserId");
 21673
 21674                    b.ToTable("ItemDisplayPreferences");
 21675                });
 676
 21677            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValue", b =>
 21678                {
 21679                    b.Property<Guid>("ItemValueId")
 21680                        .ValueGeneratedOnAdd()
 21681                        .HasColumnType("TEXT");
 21682
 21683                    b.Property<string>("CleanValue")
 21684                        .IsRequired()
 21685                        .HasColumnType("TEXT");
 21686
 21687                    b.Property<int>("Type")
 21688                        .HasColumnType("INTEGER");
 21689
 21690                    b.Property<string>("Value")
 21691                        .IsRequired()
 21692                        .HasColumnType("TEXT");
 21693
 21694                    b.HasKey("ItemValueId");
 21695
 21696                    b.HasIndex("Type", "CleanValue")
 21697                        .IsUnique();
 21698
 21699                    b.ToTable("ItemValues");
 21700                });
 701
 21702            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValueMap", b =>
 21703                {
 21704                    b.Property<Guid>("ItemValueId")
 21705                        .HasColumnType("TEXT");
 21706
 21707                    b.Property<Guid>("ItemId")
 21708                        .HasColumnType("TEXT");
 21709
 21710                    b.HasKey("ItemValueId", "ItemId");
 21711
 21712                    b.HasIndex("ItemId");
 21713
 21714                    b.ToTable("ItemValuesMap");
 21715                });
 716
 21717            modelBuilder.Entity("Jellyfin.Data.Entities.MediaSegment", b =>
 21718                {
 21719                    b.Property<Guid>("Id")
 21720                        .ValueGeneratedOnAdd()
 21721                        .HasColumnType("TEXT");
 21722
 21723                    b.Property<long>("EndTicks")
 21724                        .HasColumnType("INTEGER");
 21725
 21726                    b.Property<Guid>("ItemId")
 21727                        .HasColumnType("TEXT");
 21728
 21729                    b.Property<string>("SegmentProviderId")
 21730                        .IsRequired()
 21731                        .HasColumnType("TEXT");
 21732
 21733                    b.Property<long>("StartTicks")
 21734                        .HasColumnType("INTEGER");
 21735
 21736                    b.Property<int>("Type")
 21737                        .HasColumnType("INTEGER");
 21738
 21739                    b.HasKey("Id");
 21740
 21741                    b.ToTable("MediaSegments");
 21742                });
 743
 21744            modelBuilder.Entity("Jellyfin.Data.Entities.MediaStreamInfo", b =>
 21745                {
 21746                    b.Property<Guid>("ItemId")
 21747                        .HasColumnType("TEXT");
 21748
 21749                    b.Property<int>("StreamIndex")
 21750                        .HasColumnType("INTEGER");
 21751
 21752                    b.Property<string>("AspectRatio")
 21753                        .HasColumnType("TEXT");
 21754
 21755                    b.Property<float?>("AverageFrameRate")
 21756                        .HasColumnType("REAL");
 21757
 21758                    b.Property<int?>("BitDepth")
 21759                        .HasColumnType("INTEGER");
 21760
 21761                    b.Property<int?>("BitRate")
 21762                        .HasColumnType("INTEGER");
 21763
 21764                    b.Property<int?>("BlPresentFlag")
 21765                        .HasColumnType("INTEGER");
 21766
 21767                    b.Property<string>("ChannelLayout")
 21768                        .HasColumnType("TEXT");
 21769
 21770                    b.Property<int?>("Channels")
 21771                        .HasColumnType("INTEGER");
 21772
 21773                    b.Property<string>("Codec")
 21774                        .HasColumnType("TEXT");
 21775
 21776                    b.Property<string>("CodecTag")
 21777                        .HasColumnType("TEXT");
 21778
 21779                    b.Property<string>("CodecTimeBase")
 21780                        .HasColumnType("TEXT");
 21781
 21782                    b.Property<string>("ColorPrimaries")
 21783                        .HasColumnType("TEXT");
 21784
 21785                    b.Property<string>("ColorSpace")
 21786                        .HasColumnType("TEXT");
 21787
 21788                    b.Property<string>("ColorTransfer")
 21789                        .HasColumnType("TEXT");
 21790
 21791                    b.Property<string>("Comment")
 21792                        .HasColumnType("TEXT");
 21793
 21794                    b.Property<int?>("DvBlSignalCompatibilityId")
 21795                        .HasColumnType("INTEGER");
 21796
 21797                    b.Property<int?>("DvLevel")
 21798                        .HasColumnType("INTEGER");
 21799
 21800                    b.Property<int?>("DvProfile")
 21801                        .HasColumnType("INTEGER");
 21802
 21803                    b.Property<int?>("DvVersionMajor")
 21804                        .HasColumnType("INTEGER");
 21805
 21806                    b.Property<int?>("DvVersionMinor")
 21807                        .HasColumnType("INTEGER");
 21808
 21809                    b.Property<int?>("ElPresentFlag")
 21810                        .HasColumnType("INTEGER");
 21811
 21812                    b.Property<int?>("Height")
 21813                        .HasColumnType("INTEGER");
 21814
 21815                    b.Property<bool?>("IsAnamorphic")
 21816                        .HasColumnType("INTEGER");
 21817
 21818                    b.Property<bool?>("IsAvc")
 21819                        .HasColumnType("INTEGER");
 21820
 21821                    b.Property<bool>("IsDefault")
 21822                        .HasColumnType("INTEGER");
 21823
 21824                    b.Property<bool>("IsExternal")
 21825                        .HasColumnType("INTEGER");
 21826
 21827                    b.Property<bool>("IsForced")
 21828                        .HasColumnType("INTEGER");
 21829
 21830                    b.Property<bool?>("IsHearingImpaired")
 21831                        .HasColumnType("INTEGER");
 21832
 21833                    b.Property<bool?>("IsInterlaced")
 21834                        .HasColumnType("INTEGER");
 21835
 21836                    b.Property<string>("KeyFrames")
 21837                        .HasColumnType("TEXT");
 21838
 21839                    b.Property<string>("Language")
 21840                        .HasColumnType("TEXT");
 21841
 21842                    b.Property<float?>("Level")
 21843                        .HasColumnType("REAL");
 21844
 21845                    b.Property<string>("NalLengthSize")
 21846                        .HasColumnType("TEXT");
 21847
 21848                    b.Property<string>("Path")
 21849                        .HasColumnType("TEXT");
 21850
 21851                    b.Property<string>("PixelFormat")
 21852                        .HasColumnType("TEXT");
 21853
 21854                    b.Property<string>("Profile")
 21855                        .HasColumnType("TEXT");
 21856
 21857                    b.Property<float?>("RealFrameRate")
 21858                        .HasColumnType("REAL");
 21859
 21860                    b.Property<int?>("RefFrames")
 21861                        .HasColumnType("INTEGER");
 21862
 21863                    b.Property<int?>("Rotation")
 21864                        .HasColumnType("INTEGER");
 21865
 21866                    b.Property<int?>("RpuPresentFlag")
 21867                        .HasColumnType("INTEGER");
 21868
 21869                    b.Property<int?>("SampleRate")
 21870                        .HasColumnType("INTEGER");
 21871
 21872                    b.Property<int>("StreamType")
 21873                        .HasColumnType("INTEGER");
 21874
 21875                    b.Property<string>("TimeBase")
 21876                        .HasColumnType("TEXT");
 21877
 21878                    b.Property<string>("Title")
 21879                        .HasColumnType("TEXT");
 21880
 21881                    b.Property<int?>("Width")
 21882                        .HasColumnType("INTEGER");
 21883
 21884                    b.HasKey("ItemId", "StreamIndex");
 21885
 21886                    b.HasIndex("StreamIndex");
 21887
 21888                    b.HasIndex("StreamType");
 21889
 21890                    b.HasIndex("StreamIndex", "StreamType");
 21891
 21892                    b.HasIndex("StreamIndex", "StreamType", "Language");
 21893
 21894                    b.ToTable("MediaStreamInfos");
 21895                });
 896
 21897            modelBuilder.Entity("Jellyfin.Data.Entities.People", b =>
 21898                {
 21899                    b.Property<Guid>("Id")
 21900                        .ValueGeneratedOnAdd()
 21901                        .HasColumnType("TEXT");
 21902
 21903                    b.Property<string>("Name")
 21904                        .IsRequired()
 21905                        .HasColumnType("TEXT");
 21906
 21907                    b.Property<string>("PersonType")
 21908                        .HasColumnType("TEXT");
 21909
 21910                    b.HasKey("Id");
 21911
 21912                    b.HasIndex("Name");
 21913
 21914                    b.ToTable("Peoples");
 21915                });
 916
 21917            modelBuilder.Entity("Jellyfin.Data.Entities.PeopleBaseItemMap", b =>
 21918                {
 21919                    b.Property<Guid>("ItemId")
 21920                        .HasColumnType("TEXT");
 21921
 21922                    b.Property<Guid>("PeopleId")
 21923                        .HasColumnType("TEXT");
 21924
 21925                    b.Property<int?>("ListOrder")
 21926                        .HasColumnType("INTEGER");
 21927
 21928                    b.Property<string>("Role")
 21929                        .HasColumnType("TEXT");
 21930
 21931                    b.Property<int?>("SortOrder")
 21932                        .HasColumnType("INTEGER");
 21933
 21934                    b.HasKey("ItemId", "PeopleId");
 21935
 21936                    b.HasIndex("PeopleId");
 21937
 21938                    b.HasIndex("ItemId", "ListOrder");
 21939
 21940                    b.HasIndex("ItemId", "SortOrder");
 21941
 21942                    b.ToTable("PeopleBaseItemMap");
 21943                });
 944
 21945            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21946                {
 21947                    b.Property<int>("Id")
 21948                        .ValueGeneratedOnAdd()
 21949                        .HasColumnType("INTEGER");
 21950
 21951                    b.Property<int>("Kind")
 21952                        .HasColumnType("INTEGER");
 21953
 21954                    b.Property<Guid?>("Permission_Permissions_Guid")
 21955                        .HasColumnType("TEXT");
 21956
 21957                    b.Property<uint>("RowVersion")
 21958                        .IsConcurrencyToken()
 21959                        .HasColumnType("INTEGER");
 21960
 21961                    b.Property<Guid?>("UserId")
 21962                        .HasColumnType("TEXT");
 21963
 21964                    b.Property<bool>("Value")
 21965                        .HasColumnType("INTEGER");
 21966
 21967                    b.HasKey("Id");
 21968
 21969                    b.HasIndex("UserId", "Kind")
 21970                        .IsUnique()
 21971                        .HasFilter("[UserId] IS NOT NULL");
 21972
 21973                    b.ToTable("Permissions");
 21974                });
 975
 21976            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21977                {
 21978                    b.Property<int>("Id")
 21979                        .ValueGeneratedOnAdd()
 21980                        .HasColumnType("INTEGER");
 21981
 21982                    b.Property<int>("Kind")
 21983                        .HasColumnType("INTEGER");
 21984
 21985                    b.Property<Guid?>("Preference_Preferences_Guid")
 21986                        .HasColumnType("TEXT");
 21987
 21988                    b.Property<uint>("RowVersion")
 21989                        .IsConcurrencyToken()
 21990                        .HasColumnType("INTEGER");
 21991
 21992                    b.Property<Guid?>("UserId")
 21993                        .HasColumnType("TEXT");
 21994
 21995                    b.Property<string>("Value")
 21996                        .IsRequired()
 21997                        .HasMaxLength(65535)
 21998                        .HasColumnType("TEXT");
 21999
 211000                    b.HasKey("Id");
 211001
 211002                    b.HasIndex("UserId", "Kind")
 211003                        .IsUnique()
 211004                        .HasFilter("[UserId] IS NOT NULL");
 211005
 211006                    b.ToTable("Preferences");
 211007                });
 1008
 211009            modelBuilder.Entity("Jellyfin.Data.Entities.Security.ApiKey", b =>
 211010                {
 211011                    b.Property<int>("Id")
 211012                        .ValueGeneratedOnAdd()
 211013                        .HasColumnType("INTEGER");
 211014
 211015                    b.Property<string>("AccessToken")
 211016                        .IsRequired()
 211017                        .HasColumnType("TEXT");
 211018
 211019                    b.Property<DateTime>("DateCreated")
 211020                        .HasColumnType("TEXT");
 211021
 211022                    b.Property<DateTime>("DateLastActivity")
 211023                        .HasColumnType("TEXT");
 211024
 211025                    b.Property<string>("Name")
 211026                        .IsRequired()
 211027                        .HasMaxLength(64)
 211028                        .HasColumnType("TEXT");
 211029
 211030                    b.HasKey("Id");
 211031
 211032                    b.HasIndex("AccessToken")
 211033                        .IsUnique();
 211034
 211035                    b.ToTable("ApiKeys");
 211036                });
 1037
 211038            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 211039                {
 211040                    b.Property<int>("Id")
 211041                        .ValueGeneratedOnAdd()
 211042                        .HasColumnType("INTEGER");
 211043
 211044                    b.Property<string>("AccessToken")
 211045                        .IsRequired()
 211046                        .HasColumnType("TEXT");
 211047
 211048                    b.Property<string>("AppName")
 211049                        .IsRequired()
 211050                        .HasMaxLength(64)
 211051                        .HasColumnType("TEXT");
 211052
 211053                    b.Property<string>("AppVersion")
 211054                        .IsRequired()
 211055                        .HasMaxLength(32)
 211056                        .HasColumnType("TEXT");
 211057
 211058                    b.Property<DateTime>("DateCreated")
 211059                        .HasColumnType("TEXT");
 211060
 211061                    b.Property<DateTime>("DateLastActivity")
 211062                        .HasColumnType("TEXT");
 211063
 211064                    b.Property<DateTime>("DateModified")
 211065                        .HasColumnType("TEXT");
 211066
 211067                    b.Property<string>("DeviceId")
 211068                        .IsRequired()
 211069                        .HasMaxLength(256)
 211070                        .HasColumnType("TEXT");
 211071
 211072                    b.Property<string>("DeviceName")
 211073                        .IsRequired()
 211074                        .HasMaxLength(64)
 211075                        .HasColumnType("TEXT");
 211076
 211077                    b.Property<bool>("IsActive")
 211078                        .HasColumnType("INTEGER");
 211079
 211080                    b.Property<Guid>("UserId")
 211081                        .HasColumnType("TEXT");
 211082
 211083                    b.HasKey("Id");
 211084
 211085                    b.HasIndex("DeviceId");
 211086
 211087                    b.HasIndex("AccessToken", "DateLastActivity");
 211088
 211089                    b.HasIndex("DeviceId", "DateLastActivity");
 211090
 211091                    b.HasIndex("UserId", "DeviceId");
 211092
 211093                    b.ToTable("Devices");
 211094                });
 1095
 211096            modelBuilder.Entity("Jellyfin.Data.Entities.Security.DeviceOptions", b =>
 211097                {
 211098                    b.Property<int>("Id")
 211099                        .ValueGeneratedOnAdd()
 211100                        .HasColumnType("INTEGER");
 211101
 211102                    b.Property<string>("CustomName")
 211103                        .HasColumnType("TEXT");
 211104
 211105                    b.Property<string>("DeviceId")
 211106                        .IsRequired()
 211107                        .HasColumnType("TEXT");
 211108
 211109                    b.HasKey("Id");
 211110
 211111                    b.HasIndex("DeviceId")
 211112                        .IsUnique();
 211113
 211114                    b.ToTable("DeviceOptions");
 211115                });
 1116
 211117            modelBuilder.Entity("Jellyfin.Data.Entities.TrickplayInfo", b =>
 211118                {
 211119                    b.Property<Guid>("ItemId")
 211120                        .HasColumnType("TEXT");
 211121
 211122                    b.Property<int>("Width")
 211123                        .HasColumnType("INTEGER");
 211124
 211125                    b.Property<int>("Bandwidth")
 211126                        .HasColumnType("INTEGER");
 211127
 211128                    b.Property<int>("Height")
 211129                        .HasColumnType("INTEGER");
 211130
 211131                    b.Property<int>("Interval")
 211132                        .HasColumnType("INTEGER");
 211133
 211134                    b.Property<int>("ThumbnailCount")
 211135                        .HasColumnType("INTEGER");
 211136
 211137                    b.Property<int>("TileHeight")
 211138                        .HasColumnType("INTEGER");
 211139
 211140                    b.Property<int>("TileWidth")
 211141                        .HasColumnType("INTEGER");
 211142
 211143                    b.HasKey("ItemId", "Width");
 211144
 211145                    b.ToTable("TrickplayInfos");
 211146                });
 1147
 211148            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 211149                {
 211150                    b.Property<Guid>("Id")
 211151                        .ValueGeneratedOnAdd()
 211152                        .HasColumnType("TEXT");
 211153
 211154                    b.Property<string>("AudioLanguagePreference")
 211155                        .HasMaxLength(255)
 211156                        .HasColumnType("TEXT");
 211157
 211158                    b.Property<string>("AuthenticationProviderId")
 211159                        .IsRequired()
 211160                        .HasMaxLength(255)
 211161                        .HasColumnType("TEXT");
 211162
 211163                    b.Property<string>("CastReceiverId")
 211164                        .HasMaxLength(32)
 211165                        .HasColumnType("TEXT");
 211166
 211167                    b.Property<bool>("DisplayCollectionsView")
 211168                        .HasColumnType("INTEGER");
 211169
 211170                    b.Property<bool>("DisplayMissingEpisodes")
 211171                        .HasColumnType("INTEGER");
 211172
 211173                    b.Property<bool>("EnableAutoLogin")
 211174                        .HasColumnType("INTEGER");
 211175
 211176                    b.Property<bool>("EnableLocalPassword")
 211177                        .HasColumnType("INTEGER");
 211178
 211179                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 211180                        .HasColumnType("INTEGER");
 211181
 211182                    b.Property<bool>("EnableUserPreferenceAccess")
 211183                        .HasColumnType("INTEGER");
 211184
 211185                    b.Property<bool>("HidePlayedInLatest")
 211186                        .HasColumnType("INTEGER");
 211187
 211188                    b.Property<long>("InternalId")
 211189                        .HasColumnType("INTEGER");
 211190
 211191                    b.Property<int>("InvalidLoginAttemptCount")
 211192                        .HasColumnType("INTEGER");
 211193
 211194                    b.Property<DateTime?>("LastActivityDate")
 211195                        .HasColumnType("TEXT");
 211196
 211197                    b.Property<DateTime?>("LastLoginDate")
 211198                        .HasColumnType("TEXT");
 211199
 211200                    b.Property<int?>("LoginAttemptsBeforeLockout")
 211201                        .HasColumnType("INTEGER");
 211202
 211203                    b.Property<int>("MaxActiveSessions")
 211204                        .HasColumnType("INTEGER");
 211205
 211206                    b.Property<int?>("MaxParentalAgeRating")
 211207                        .HasColumnType("INTEGER");
 211208
 211209                    b.Property<bool>("MustUpdatePassword")
 211210                        .HasColumnType("INTEGER");
 211211
 211212                    b.Property<string>("Password")
 211213                        .HasMaxLength(65535)
 211214                        .HasColumnType("TEXT");
 211215
 211216                    b.Property<string>("PasswordResetProviderId")
 211217                        .IsRequired()
 211218                        .HasMaxLength(255)
 211219                        .HasColumnType("TEXT");
 211220
 211221                    b.Property<bool>("PlayDefaultAudioTrack")
 211222                        .HasColumnType("INTEGER");
 211223
 211224                    b.Property<bool>("RememberAudioSelections")
 211225                        .HasColumnType("INTEGER");
 211226
 211227                    b.Property<bool>("RememberSubtitleSelections")
 211228                        .HasColumnType("INTEGER");
 211229
 211230                    b.Property<int?>("RemoteClientBitrateLimit")
 211231                        .HasColumnType("INTEGER");
 211232
 211233                    b.Property<uint>("RowVersion")
 211234                        .IsConcurrencyToken()
 211235                        .HasColumnType("INTEGER");
 211236
 211237                    b.Property<string>("SubtitleLanguagePreference")
 211238                        .HasMaxLength(255)
 211239                        .HasColumnType("TEXT");
 211240
 211241                    b.Property<int>("SubtitleMode")
 211242                        .HasColumnType("INTEGER");
 211243
 211244                    b.Property<int>("SyncPlayAccess")
 211245                        .HasColumnType("INTEGER");
 211246
 211247                    b.Property<string>("Username")
 211248                        .IsRequired()
 211249                        .HasMaxLength(255)
 211250                        .HasColumnType("TEXT")
 211251                        .UseCollation("NOCASE");
 211252
 211253                    b.HasKey("Id");
 211254
 211255                    b.HasIndex("Username")
 211256                        .IsUnique();
 211257
 211258                    b.ToTable("Users");
 211259                });
 1260
 211261            modelBuilder.Entity("Jellyfin.Data.Entities.UserData", b =>
 211262                {
 211263                    b.Property<Guid>("ItemId")
 211264                        .HasColumnType("TEXT");
 211265
 211266                    b.Property<Guid>("UserId")
 211267                        .HasColumnType("TEXT");
 211268
 211269                    b.Property<string>("CustomDataKey")
 211270                        .HasColumnType("TEXT");
 211271
 211272                    b.Property<int?>("AudioStreamIndex")
 211273                        .HasColumnType("INTEGER");
 211274
 211275                    b.Property<bool>("IsFavorite")
 211276                        .HasColumnType("INTEGER");
 211277
 211278                    b.Property<DateTime?>("LastPlayedDate")
 211279                        .HasColumnType("TEXT");
 211280
 211281                    b.Property<bool?>("Likes")
 211282                        .HasColumnType("INTEGER");
 211283
 211284                    b.Property<int>("PlayCount")
 211285                        .HasColumnType("INTEGER");
 211286
 211287                    b.Property<long>("PlaybackPositionTicks")
 211288                        .HasColumnType("INTEGER");
 211289
 211290                    b.Property<bool>("Played")
 211291                        .HasColumnType("INTEGER");
 211292
 211293                    b.Property<double?>("Rating")
 211294                        .HasColumnType("REAL");
 211295
 211296                    b.Property<int?>("SubtitleStreamIndex")
 211297                        .HasColumnType("INTEGER");
 211298
 211299                    b.HasKey("ItemId", "UserId", "CustomDataKey");
 211300
 211301                    b.HasIndex("UserId");
 211302
 211303                    b.HasIndex("ItemId", "UserId", "IsFavorite");
 211304
 211305                    b.HasIndex("ItemId", "UserId", "LastPlayedDate");
 211306
 211307                    b.HasIndex("ItemId", "UserId", "PlaybackPositionTicks");
 211308
 211309                    b.HasIndex("ItemId", "UserId", "Played");
 211310
 211311                    b.ToTable("UserData");
 211312                });
 1313
 211314            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 211315                {
 211316                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211317                        .WithMany("AccessSchedules")
 211318                        .HasForeignKey("UserId")
 211319                        .OnDelete(DeleteBehavior.Cascade)
 211320                        .IsRequired();
 211321                });
 1322
 211323            modelBuilder.Entity("Jellyfin.Data.Entities.AncestorId", b =>
 211324                {
 211325                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211326                        .WithMany("Children")
 211327                        .HasForeignKey("ItemId")
 211328                        .OnDelete(DeleteBehavior.Cascade)
 211329                        .IsRequired();
 211330
 211331                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "ParentItem")
 211332                        .WithMany("ParentAncestors")
 211333                        .HasForeignKey("ParentItemId")
 211334                        .OnDelete(DeleteBehavior.Cascade)
 211335                        .IsRequired();
 211336
 211337                    b.Navigation("Item");
 211338
 211339                    b.Navigation("ParentItem");
 211340                });
 1341
 211342            modelBuilder.Entity("Jellyfin.Data.Entities.AttachmentStreamInfo", b =>
 211343                {
 211344                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211345                        .WithMany()
 211346                        .HasForeignKey("ItemId")
 211347                        .OnDelete(DeleteBehavior.Cascade)
 211348                        .IsRequired();
 211349
 211350                    b.Navigation("Item");
 211351                });
 1352
 211353            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemImageInfo", b =>
 211354                {
 211355                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211356                        .WithMany("Images")
 211357                        .HasForeignKey("ItemId")
 211358                        .OnDelete(DeleteBehavior.Cascade)
 211359                        .IsRequired();
 211360
 211361                    b.Navigation("Item");
 211362                });
 1363
 211364            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemMetadataField", b =>
 211365                {
 211366                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211367                        .WithMany("LockedFields")
 211368                        .HasForeignKey("ItemId")
 211369                        .OnDelete(DeleteBehavior.Cascade)
 211370                        .IsRequired();
 211371
 211372                    b.Navigation("Item");
 211373                });
 1374
 211375            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemProvider", b =>
 211376                {
 211377                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211378                        .WithMany("Provider")
 211379                        .HasForeignKey("ItemId")
 211380                        .OnDelete(DeleteBehavior.Cascade)
 211381                        .IsRequired();
 211382
 211383                    b.Navigation("Item");
 211384                });
 1385
 211386            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemTrailerType", b =>
 211387                {
 211388                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211389                        .WithMany("TrailerTypes")
 211390                        .HasForeignKey("ItemId")
 211391                        .OnDelete(DeleteBehavior.Cascade)
 211392                        .IsRequired();
 211393
 211394                    b.Navigation("Item");
 211395                });
 1396
 211397            modelBuilder.Entity("Jellyfin.Data.Entities.Chapter", b =>
 211398                {
 211399                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211400                        .WithMany("Chapters")
 211401                        .HasForeignKey("ItemId")
 211402                        .OnDelete(DeleteBehavior.Cascade)
 211403                        .IsRequired();
 211404
 211405                    b.Navigation("Item");
 211406                });
 1407
 211408            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 211409                {
 211410                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211411                        .WithMany("DisplayPreferences")
 211412                        .HasForeignKey("UserId")
 211413                        .OnDelete(DeleteBehavior.Cascade)
 211414                        .IsRequired();
 211415                });
 1416
 211417            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 211418                {
 211419                    b.HasOne("Jellyfin.Data.Entities.DisplayPreferences", null)
 211420                        .WithMany("HomeSections")
 211421                        .HasForeignKey("DisplayPreferencesId")
 211422                        .OnDelete(DeleteBehavior.Cascade)
 211423                        .IsRequired();
 211424                });
 1425
 211426            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 211427                {
 211428                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211429                        .WithOne("ProfileImage")
 211430                        .HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId")
 211431                        .OnDelete(DeleteBehavior.Cascade);
 211432                });
 1433
 211434            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 211435                {
 211436                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211437                        .WithMany("ItemDisplayPreferences")
 211438                        .HasForeignKey("UserId")
 211439                        .OnDelete(DeleteBehavior.Cascade)
 211440                        .IsRequired();
 211441                });
 1442
 211443            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValueMap", b =>
 211444                {
 211445                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211446                        .WithMany("ItemValues")
 211447                        .HasForeignKey("ItemId")
 211448                        .OnDelete(DeleteBehavior.Cascade)
 211449                        .IsRequired();
 211450
 211451                    b.HasOne("Jellyfin.Data.Entities.ItemValue", "ItemValue")
 211452                        .WithMany("BaseItemsMap")
 211453                        .HasForeignKey("ItemValueId")
 211454                        .OnDelete(DeleteBehavior.Cascade)
 211455                        .IsRequired();
 211456
 211457                    b.Navigation("Item");
 211458
 211459                    b.Navigation("ItemValue");
 211460                });
 1461
 211462            modelBuilder.Entity("Jellyfin.Data.Entities.MediaStreamInfo", b =>
 211463                {
 211464                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211465                        .WithMany("MediaStreams")
 211466                        .HasForeignKey("ItemId")
 211467                        .OnDelete(DeleteBehavior.Cascade)
 211468                        .IsRequired();
 211469
 211470                    b.Navigation("Item");
 211471                });
 1472
 211473            modelBuilder.Entity("Jellyfin.Data.Entities.PeopleBaseItemMap", b =>
 211474                {
 211475                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211476                        .WithMany("Peoples")
 211477                        .HasForeignKey("ItemId")
 211478                        .OnDelete(DeleteBehavior.Cascade)
 211479                        .IsRequired();
 211480
 211481                    b.HasOne("Jellyfin.Data.Entities.People", "People")
 211482                        .WithMany("BaseItems")
 211483                        .HasForeignKey("PeopleId")
 211484                        .OnDelete(DeleteBehavior.Cascade)
 211485                        .IsRequired();
 211486
 211487                    b.Navigation("Item");
 211488
 211489                    b.Navigation("People");
 211490                });
 1491
 211492            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 211493                {
 211494                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211495                        .WithMany("Permissions")
 211496                        .HasForeignKey("UserId")
 211497                        .OnDelete(DeleteBehavior.Cascade);
 211498                });
 1499
 211500            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 211501                {
 211502                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211503                        .WithMany("Preferences")
 211504                        .HasForeignKey("UserId")
 211505                        .OnDelete(DeleteBehavior.Cascade);
 211506                });
 1507
 211508            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 211509                {
 211510                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 211511                        .WithMany()
 211512                        .HasForeignKey("UserId")
 211513                        .OnDelete(DeleteBehavior.Cascade)
 211514                        .IsRequired();
 211515
 211516                    b.Navigation("User");
 211517                });
 1518
 211519            modelBuilder.Entity("Jellyfin.Data.Entities.UserData", b =>
 211520                {
 211521                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211522                        .WithMany("UserData")
 211523                        .HasForeignKey("ItemId")
 211524                        .OnDelete(DeleteBehavior.Cascade)
 211525                        .IsRequired();
 211526
 211527                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 211528                        .WithMany()
 211529                        .HasForeignKey("UserId")
 211530                        .OnDelete(DeleteBehavior.Cascade)
 211531                        .IsRequired();
 211532
 211533                    b.Navigation("Item");
 211534
 211535                    b.Navigation("User");
 211536                });
 1537
 211538            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemEntity", b =>
 211539                {
 211540                    b.Navigation("Chapters");
 211541
 211542                    b.Navigation("Children");
 211543
 211544                    b.Navigation("Images");
 211545
 211546                    b.Navigation("ItemValues");
 211547
 211548                    b.Navigation("LockedFields");
 211549
 211550                    b.Navigation("MediaStreams");
 211551
 211552                    b.Navigation("ParentAncestors");
 211553
 211554                    b.Navigation("Peoples");
 211555
 211556                    b.Navigation("Provider");
 211557
 211558                    b.Navigation("TrailerTypes");
 211559
 211560                    b.Navigation("UserData");
 211561                });
 1562
 211563            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 211564                {
 211565                    b.Navigation("HomeSections");
 211566                });
 1567
 211568            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValue", b =>
 211569                {
 211570                    b.Navigation("BaseItemsMap");
 211571                });
 1572
 211573            modelBuilder.Entity("Jellyfin.Data.Entities.People", b =>
 211574                {
 211575                    b.Navigation("BaseItems");
 211576                });
 1577
 211578            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 211579                {
 211580                    b.Navigation("AccessSchedules");
 211581
 211582                    b.Navigation("DisplayPreferences");
 211583
 211584                    b.Navigation("ItemDisplayPreferences");
 211585
 211586                    b.Navigation("Permissions");
 211587
 211588                    b.Navigation("Preferences");
 211589
 211590                    b.Navigation("ProfileImage");
 211591                });
 1592#pragma warning restore 612, 618
 211593        }
 1594    }
 1595}