< Summary - Jellyfin

Line coverage
98%
Covered lines: 1537
Uncovered lines: 16
Coverable lines: 1553
Total lines: 1652
Line coverage: 98.9%
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/20241112152323_FixAncestorIdConfig.cs

#LineLine coverage
 1using System;
 2using Microsoft.EntityFrameworkCore.Migrations;
 3
 4#nullable disable
 5
 6namespace Jellyfin.Server.Implementations.Migrations
 7{
 8    /// <inheritdoc />
 9    public partial class FixAncestorIdConfig : Migration
 10    {
 11        /// <inheritdoc />
 12        protected override void Up(MigrationBuilder migrationBuilder)
 13        {
 2114            migrationBuilder.DropForeignKey(
 2115                name: "FK_AncestorIds_BaseItems_BaseItemEntityId",
 2116                table: "AncestorIds");
 17
 2118            migrationBuilder.DropIndex(
 2119                name: "IX_AncestorIds_BaseItemEntityId",
 2120                table: "AncestorIds");
 21
 2122            migrationBuilder.DropColumn(
 2123                name: "BaseItemEntityId",
 2124                table: "AncestorIds");
 2125        }
 26
 27        /// <inheritdoc />
 28        protected override void Down(MigrationBuilder migrationBuilder)
 29        {
 030            migrationBuilder.AddColumn<Guid>(
 031                name: "BaseItemEntityId",
 032                table: "AncestorIds",
 033                type: "TEXT",
 034                nullable: true);
 35
 036            migrationBuilder.CreateIndex(
 037                name: "IX_AncestorIds_BaseItemEntityId",
 038                table: "AncestorIds",
 039                column: "BaseItemEntityId");
 40
 041            migrationBuilder.AddForeignKey(
 042                name: "FK_AncestorIds_BaseItems_BaseItemEntityId",
 043                table: "AncestorIds",
 044                column: "BaseItemEntityId",
 045                principalTable: "BaseItems",
 046                principalColumn: "Id");
 047        }
 48    }
 49}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20241112152323_FixAncestorIdConfig.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("20241112152323_FixAncestorIdConfig")]
 15    partial class FixAncestorIdConfig
 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
 21698                    b.ToTable("ItemValues");
 21699                });
 700
 21701            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValueMap", b =>
 21702                {
 21703                    b.Property<Guid>("ItemValueId")
 21704                        .HasColumnType("TEXT");
 21705
 21706                    b.Property<Guid>("ItemId")
 21707                        .HasColumnType("TEXT");
 21708
 21709                    b.HasKey("ItemValueId", "ItemId");
 21710
 21711                    b.HasIndex("ItemId");
 21712
 21713                    b.ToTable("ItemValuesMap");
 21714                });
 715
 21716            modelBuilder.Entity("Jellyfin.Data.Entities.MediaSegment", b =>
 21717                {
 21718                    b.Property<Guid>("Id")
 21719                        .ValueGeneratedOnAdd()
 21720                        .HasColumnType("TEXT");
 21721
 21722                    b.Property<long>("EndTicks")
 21723                        .HasColumnType("INTEGER");
 21724
 21725                    b.Property<Guid>("ItemId")
 21726                        .HasColumnType("TEXT");
 21727
 21728                    b.Property<string>("SegmentProviderId")
 21729                        .IsRequired()
 21730                        .HasColumnType("TEXT");
 21731
 21732                    b.Property<long>("StartTicks")
 21733                        .HasColumnType("INTEGER");
 21734
 21735                    b.Property<int>("Type")
 21736                        .HasColumnType("INTEGER");
 21737
 21738                    b.HasKey("Id");
 21739
 21740                    b.ToTable("MediaSegments");
 21741                });
 742
 21743            modelBuilder.Entity("Jellyfin.Data.Entities.MediaStreamInfo", b =>
 21744                {
 21745                    b.Property<Guid>("ItemId")
 21746                        .HasColumnType("TEXT");
 21747
 21748                    b.Property<int>("StreamIndex")
 21749                        .HasColumnType("INTEGER");
 21750
 21751                    b.Property<string>("AspectRatio")
 21752                        .HasColumnType("TEXT");
 21753
 21754                    b.Property<float>("AverageFrameRate")
 21755                        .HasColumnType("REAL");
 21756
 21757                    b.Property<int>("BitDepth")
 21758                        .HasColumnType("INTEGER");
 21759
 21760                    b.Property<int>("BitRate")
 21761                        .HasColumnType("INTEGER");
 21762
 21763                    b.Property<int>("BlPresentFlag")
 21764                        .HasColumnType("INTEGER");
 21765
 21766                    b.Property<string>("ChannelLayout")
 21767                        .HasColumnType("TEXT");
 21768
 21769                    b.Property<int>("Channels")
 21770                        .HasColumnType("INTEGER");
 21771
 21772                    b.Property<string>("Codec")
 21773                        .HasColumnType("TEXT");
 21774
 21775                    b.Property<string>("CodecTag")
 21776                        .IsRequired()
 21777                        .HasColumnType("TEXT");
 21778
 21779                    b.Property<string>("CodecTimeBase")
 21780                        .IsRequired()
 21781                        .HasColumnType("TEXT");
 21782
 21783                    b.Property<string>("ColorPrimaries")
 21784                        .IsRequired()
 21785                        .HasColumnType("TEXT");
 21786
 21787                    b.Property<string>("ColorSpace")
 21788                        .IsRequired()
 21789                        .HasColumnType("TEXT");
 21790
 21791                    b.Property<string>("ColorTransfer")
 21792                        .IsRequired()
 21793                        .HasColumnType("TEXT");
 21794
 21795                    b.Property<string>("Comment")
 21796                        .IsRequired()
 21797                        .HasColumnType("TEXT");
 21798
 21799                    b.Property<int>("DvBlSignalCompatibilityId")
 21800                        .HasColumnType("INTEGER");
 21801
 21802                    b.Property<int>("DvLevel")
 21803                        .HasColumnType("INTEGER");
 21804
 21805                    b.Property<int>("DvProfile")
 21806                        .HasColumnType("INTEGER");
 21807
 21808                    b.Property<int>("DvVersionMajor")
 21809                        .HasColumnType("INTEGER");
 21810
 21811                    b.Property<int>("DvVersionMinor")
 21812                        .HasColumnType("INTEGER");
 21813
 21814                    b.Property<int>("ElPresentFlag")
 21815                        .HasColumnType("INTEGER");
 21816
 21817                    b.Property<int>("Height")
 21818                        .HasColumnType("INTEGER");
 21819
 21820                    b.Property<bool>("IsAnamorphic")
 21821                        .HasColumnType("INTEGER");
 21822
 21823                    b.Property<bool>("IsAvc")
 21824                        .HasColumnType("INTEGER");
 21825
 21826                    b.Property<bool>("IsDefault")
 21827                        .HasColumnType("INTEGER");
 21828
 21829                    b.Property<bool>("IsExternal")
 21830                        .HasColumnType("INTEGER");
 21831
 21832                    b.Property<bool>("IsForced")
 21833                        .HasColumnType("INTEGER");
 21834
 21835                    b.Property<bool>("IsHearingImpaired")
 21836                        .HasColumnType("INTEGER");
 21837
 21838                    b.Property<bool>("IsInterlaced")
 21839                        .HasColumnType("INTEGER");
 21840
 21841                    b.Property<string>("KeyFrames")
 21842                        .HasColumnType("TEXT");
 21843
 21844                    b.Property<string>("Language")
 21845                        .HasColumnType("TEXT");
 21846
 21847                    b.Property<float>("Level")
 21848                        .HasColumnType("REAL");
 21849
 21850                    b.Property<string>("NalLengthSize")
 21851                        .IsRequired()
 21852                        .HasColumnType("TEXT");
 21853
 21854                    b.Property<string>("Path")
 21855                        .HasColumnType("TEXT");
 21856
 21857                    b.Property<string>("PixelFormat")
 21858                        .HasColumnType("TEXT");
 21859
 21860                    b.Property<string>("Profile")
 21861                        .HasColumnType("TEXT");
 21862
 21863                    b.Property<float>("RealFrameRate")
 21864                        .HasColumnType("REAL");
 21865
 21866                    b.Property<int>("RefFrames")
 21867                        .HasColumnType("INTEGER");
 21868
 21869                    b.Property<int>("Rotation")
 21870                        .HasColumnType("INTEGER");
 21871
 21872                    b.Property<int>("RpuPresentFlag")
 21873                        .HasColumnType("INTEGER");
 21874
 21875                    b.Property<int>("SampleRate")
 21876                        .HasColumnType("INTEGER");
 21877
 21878                    b.Property<int?>("StreamType")
 21879                        .HasColumnType("INTEGER");
 21880
 21881                    b.Property<string>("TimeBase")
 21882                        .IsRequired()
 21883                        .HasColumnType("TEXT");
 21884
 21885                    b.Property<string>("Title")
 21886                        .IsRequired()
 21887                        .HasColumnType("TEXT");
 21888
 21889                    b.Property<int>("Width")
 21890                        .HasColumnType("INTEGER");
 21891
 21892                    b.HasKey("ItemId", "StreamIndex");
 21893
 21894                    b.HasIndex("StreamIndex");
 21895
 21896                    b.HasIndex("StreamType");
 21897
 21898                    b.HasIndex("StreamIndex", "StreamType");
 21899
 21900                    b.HasIndex("StreamIndex", "StreamType", "Language");
 21901
 21902                    b.ToTable("MediaStreamInfos");
 21903                });
 904
 21905            modelBuilder.Entity("Jellyfin.Data.Entities.People", b =>
 21906                {
 21907                    b.Property<Guid>("Id")
 21908                        .ValueGeneratedOnAdd()
 21909                        .HasColumnType("TEXT");
 21910
 21911                    b.Property<string>("Name")
 21912                        .IsRequired()
 21913                        .HasColumnType("TEXT");
 21914
 21915                    b.Property<string>("PersonType")
 21916                        .HasColumnType("TEXT");
 21917
 21918                    b.HasKey("Id");
 21919
 21920                    b.HasIndex("Name");
 21921
 21922                    b.ToTable("Peoples");
 21923                });
 924
 21925            modelBuilder.Entity("Jellyfin.Data.Entities.PeopleBaseItemMap", b =>
 21926                {
 21927                    b.Property<Guid>("ItemId")
 21928                        .HasColumnType("TEXT");
 21929
 21930                    b.Property<Guid>("PeopleId")
 21931                        .HasColumnType("TEXT");
 21932
 21933                    b.Property<int?>("ListOrder")
 21934                        .HasColumnType("INTEGER");
 21935
 21936                    b.Property<string>("Role")
 21937                        .HasColumnType("TEXT");
 21938
 21939                    b.Property<int?>("SortOrder")
 21940                        .HasColumnType("INTEGER");
 21941
 21942                    b.HasKey("ItemId", "PeopleId");
 21943
 21944                    b.HasIndex("PeopleId");
 21945
 21946                    b.HasIndex("ItemId", "ListOrder");
 21947
 21948                    b.HasIndex("ItemId", "SortOrder");
 21949
 21950                    b.ToTable("PeopleBaseItemMap");
 21951                });
 952
 21953            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21954                {
 21955                    b.Property<int>("Id")
 21956                        .ValueGeneratedOnAdd()
 21957                        .HasColumnType("INTEGER");
 21958
 21959                    b.Property<int>("Kind")
 21960                        .HasColumnType("INTEGER");
 21961
 21962                    b.Property<Guid?>("Permission_Permissions_Guid")
 21963                        .HasColumnType("TEXT");
 21964
 21965                    b.Property<uint>("RowVersion")
 21966                        .IsConcurrencyToken()
 21967                        .HasColumnType("INTEGER");
 21968
 21969                    b.Property<Guid?>("UserId")
 21970                        .HasColumnType("TEXT");
 21971
 21972                    b.Property<bool>("Value")
 21973                        .HasColumnType("INTEGER");
 21974
 21975                    b.HasKey("Id");
 21976
 21977                    b.HasIndex("UserId", "Kind")
 21978                        .IsUnique()
 21979                        .HasFilter("[UserId] IS NOT NULL");
 21980
 21981                    b.ToTable("Permissions");
 21982                });
 983
 21984            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21985                {
 21986                    b.Property<int>("Id")
 21987                        .ValueGeneratedOnAdd()
 21988                        .HasColumnType("INTEGER");
 21989
 21990                    b.Property<int>("Kind")
 21991                        .HasColumnType("INTEGER");
 21992
 21993                    b.Property<Guid?>("Preference_Preferences_Guid")
 21994                        .HasColumnType("TEXT");
 21995
 21996                    b.Property<uint>("RowVersion")
 21997                        .IsConcurrencyToken()
 21998                        .HasColumnType("INTEGER");
 21999
 211000                    b.Property<Guid?>("UserId")
 211001                        .HasColumnType("TEXT");
 211002
 211003                    b.Property<string>("Value")
 211004                        .IsRequired()
 211005                        .HasMaxLength(65535)
 211006                        .HasColumnType("TEXT");
 211007
 211008                    b.HasKey("Id");
 211009
 211010                    b.HasIndex("UserId", "Kind")
 211011                        .IsUnique()
 211012                        .HasFilter("[UserId] IS NOT NULL");
 211013
 211014                    b.ToTable("Preferences");
 211015                });
 1016
 211017            modelBuilder.Entity("Jellyfin.Data.Entities.Security.ApiKey", b =>
 211018                {
 211019                    b.Property<int>("Id")
 211020                        .ValueGeneratedOnAdd()
 211021                        .HasColumnType("INTEGER");
 211022
 211023                    b.Property<string>("AccessToken")
 211024                        .IsRequired()
 211025                        .HasColumnType("TEXT");
 211026
 211027                    b.Property<DateTime>("DateCreated")
 211028                        .HasColumnType("TEXT");
 211029
 211030                    b.Property<DateTime>("DateLastActivity")
 211031                        .HasColumnType("TEXT");
 211032
 211033                    b.Property<string>("Name")
 211034                        .IsRequired()
 211035                        .HasMaxLength(64)
 211036                        .HasColumnType("TEXT");
 211037
 211038                    b.HasKey("Id");
 211039
 211040                    b.HasIndex("AccessToken")
 211041                        .IsUnique();
 211042
 211043                    b.ToTable("ApiKeys");
 211044                });
 1045
 211046            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 211047                {
 211048                    b.Property<int>("Id")
 211049                        .ValueGeneratedOnAdd()
 211050                        .HasColumnType("INTEGER");
 211051
 211052                    b.Property<string>("AccessToken")
 211053                        .IsRequired()
 211054                        .HasColumnType("TEXT");
 211055
 211056                    b.Property<string>("AppName")
 211057                        .IsRequired()
 211058                        .HasMaxLength(64)
 211059                        .HasColumnType("TEXT");
 211060
 211061                    b.Property<string>("AppVersion")
 211062                        .IsRequired()
 211063                        .HasMaxLength(32)
 211064                        .HasColumnType("TEXT");
 211065
 211066                    b.Property<DateTime>("DateCreated")
 211067                        .HasColumnType("TEXT");
 211068
 211069                    b.Property<DateTime>("DateLastActivity")
 211070                        .HasColumnType("TEXT");
 211071
 211072                    b.Property<DateTime>("DateModified")
 211073                        .HasColumnType("TEXT");
 211074
 211075                    b.Property<string>("DeviceId")
 211076                        .IsRequired()
 211077                        .HasMaxLength(256)
 211078                        .HasColumnType("TEXT");
 211079
 211080                    b.Property<string>("DeviceName")
 211081                        .IsRequired()
 211082                        .HasMaxLength(64)
 211083                        .HasColumnType("TEXT");
 211084
 211085                    b.Property<bool>("IsActive")
 211086                        .HasColumnType("INTEGER");
 211087
 211088                    b.Property<Guid>("UserId")
 211089                        .HasColumnType("TEXT");
 211090
 211091                    b.HasKey("Id");
 211092
 211093                    b.HasIndex("DeviceId");
 211094
 211095                    b.HasIndex("AccessToken", "DateLastActivity");
 211096
 211097                    b.HasIndex("DeviceId", "DateLastActivity");
 211098
 211099                    b.HasIndex("UserId", "DeviceId");
 211100
 211101                    b.ToTable("Devices");
 211102                });
 1103
 211104            modelBuilder.Entity("Jellyfin.Data.Entities.Security.DeviceOptions", b =>
 211105                {
 211106                    b.Property<int>("Id")
 211107                        .ValueGeneratedOnAdd()
 211108                        .HasColumnType("INTEGER");
 211109
 211110                    b.Property<string>("CustomName")
 211111                        .HasColumnType("TEXT");
 211112
 211113                    b.Property<string>("DeviceId")
 211114                        .IsRequired()
 211115                        .HasColumnType("TEXT");
 211116
 211117                    b.HasKey("Id");
 211118
 211119                    b.HasIndex("DeviceId")
 211120                        .IsUnique();
 211121
 211122                    b.ToTable("DeviceOptions");
 211123                });
 1124
 211125            modelBuilder.Entity("Jellyfin.Data.Entities.TrickplayInfo", b =>
 211126                {
 211127                    b.Property<Guid>("ItemId")
 211128                        .HasColumnType("TEXT");
 211129
 211130                    b.Property<int>("Width")
 211131                        .HasColumnType("INTEGER");
 211132
 211133                    b.Property<int>("Bandwidth")
 211134                        .HasColumnType("INTEGER");
 211135
 211136                    b.Property<int>("Height")
 211137                        .HasColumnType("INTEGER");
 211138
 211139                    b.Property<int>("Interval")
 211140                        .HasColumnType("INTEGER");
 211141
 211142                    b.Property<int>("ThumbnailCount")
 211143                        .HasColumnType("INTEGER");
 211144
 211145                    b.Property<int>("TileHeight")
 211146                        .HasColumnType("INTEGER");
 211147
 211148                    b.Property<int>("TileWidth")
 211149                        .HasColumnType("INTEGER");
 211150
 211151                    b.HasKey("ItemId", "Width");
 211152
 211153                    b.ToTable("TrickplayInfos");
 211154                });
 1155
 211156            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 211157                {
 211158                    b.Property<Guid>("Id")
 211159                        .ValueGeneratedOnAdd()
 211160                        .HasColumnType("TEXT");
 211161
 211162                    b.Property<string>("AudioLanguagePreference")
 211163                        .HasMaxLength(255)
 211164                        .HasColumnType("TEXT");
 211165
 211166                    b.Property<string>("AuthenticationProviderId")
 211167                        .IsRequired()
 211168                        .HasMaxLength(255)
 211169                        .HasColumnType("TEXT");
 211170
 211171                    b.Property<string>("CastReceiverId")
 211172                        .HasMaxLength(32)
 211173                        .HasColumnType("TEXT");
 211174
 211175                    b.Property<bool>("DisplayCollectionsView")
 211176                        .HasColumnType("INTEGER");
 211177
 211178                    b.Property<bool>("DisplayMissingEpisodes")
 211179                        .HasColumnType("INTEGER");
 211180
 211181                    b.Property<bool>("EnableAutoLogin")
 211182                        .HasColumnType("INTEGER");
 211183
 211184                    b.Property<bool>("EnableLocalPassword")
 211185                        .HasColumnType("INTEGER");
 211186
 211187                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 211188                        .HasColumnType("INTEGER");
 211189
 211190                    b.Property<bool>("EnableUserPreferenceAccess")
 211191                        .HasColumnType("INTEGER");
 211192
 211193                    b.Property<bool>("HidePlayedInLatest")
 211194                        .HasColumnType("INTEGER");
 211195
 211196                    b.Property<long>("InternalId")
 211197                        .HasColumnType("INTEGER");
 211198
 211199                    b.Property<int>("InvalidLoginAttemptCount")
 211200                        .HasColumnType("INTEGER");
 211201
 211202                    b.Property<DateTime?>("LastActivityDate")
 211203                        .HasColumnType("TEXT");
 211204
 211205                    b.Property<DateTime?>("LastLoginDate")
 211206                        .HasColumnType("TEXT");
 211207
 211208                    b.Property<int?>("LoginAttemptsBeforeLockout")
 211209                        .HasColumnType("INTEGER");
 211210
 211211                    b.Property<int>("MaxActiveSessions")
 211212                        .HasColumnType("INTEGER");
 211213
 211214                    b.Property<int?>("MaxParentalAgeRating")
 211215                        .HasColumnType("INTEGER");
 211216
 211217                    b.Property<bool>("MustUpdatePassword")
 211218                        .HasColumnType("INTEGER");
 211219
 211220                    b.Property<string>("Password")
 211221                        .HasMaxLength(65535)
 211222                        .HasColumnType("TEXT");
 211223
 211224                    b.Property<string>("PasswordResetProviderId")
 211225                        .IsRequired()
 211226                        .HasMaxLength(255)
 211227                        .HasColumnType("TEXT");
 211228
 211229                    b.Property<bool>("PlayDefaultAudioTrack")
 211230                        .HasColumnType("INTEGER");
 211231
 211232                    b.Property<bool>("RememberAudioSelections")
 211233                        .HasColumnType("INTEGER");
 211234
 211235                    b.Property<bool>("RememberSubtitleSelections")
 211236                        .HasColumnType("INTEGER");
 211237
 211238                    b.Property<int?>("RemoteClientBitrateLimit")
 211239                        .HasColumnType("INTEGER");
 211240
 211241                    b.Property<uint>("RowVersion")
 211242                        .IsConcurrencyToken()
 211243                        .HasColumnType("INTEGER");
 211244
 211245                    b.Property<string>("SubtitleLanguagePreference")
 211246                        .HasMaxLength(255)
 211247                        .HasColumnType("TEXT");
 211248
 211249                    b.Property<int>("SubtitleMode")
 211250                        .HasColumnType("INTEGER");
 211251
 211252                    b.Property<int>("SyncPlayAccess")
 211253                        .HasColumnType("INTEGER");
 211254
 211255                    b.Property<string>("Username")
 211256                        .IsRequired()
 211257                        .HasMaxLength(255)
 211258                        .HasColumnType("TEXT")
 211259                        .UseCollation("NOCASE");
 211260
 211261                    b.HasKey("Id");
 211262
 211263                    b.HasIndex("Username")
 211264                        .IsUnique();
 211265
 211266                    b.ToTable("Users");
 211267                });
 1268
 211269            modelBuilder.Entity("Jellyfin.Data.Entities.UserData", b =>
 211270                {
 211271                    b.Property<Guid>("ItemId")
 211272                        .HasColumnType("TEXT");
 211273
 211274                    b.Property<Guid>("UserId")
 211275                        .HasColumnType("TEXT");
 211276
 211277                    b.Property<string>("CustomDataKey")
 211278                        .HasColumnType("TEXT");
 211279
 211280                    b.Property<int?>("AudioStreamIndex")
 211281                        .HasColumnType("INTEGER");
 211282
 211283                    b.Property<bool>("IsFavorite")
 211284                        .HasColumnType("INTEGER");
 211285
 211286                    b.Property<DateTime?>("LastPlayedDate")
 211287                        .HasColumnType("TEXT");
 211288
 211289                    b.Property<bool?>("Likes")
 211290                        .HasColumnType("INTEGER");
 211291
 211292                    b.Property<int>("PlayCount")
 211293                        .HasColumnType("INTEGER");
 211294
 211295                    b.Property<long>("PlaybackPositionTicks")
 211296                        .HasColumnType("INTEGER");
 211297
 211298                    b.Property<bool>("Played")
 211299                        .HasColumnType("INTEGER");
 211300
 211301                    b.Property<double?>("Rating")
 211302                        .HasColumnType("REAL");
 211303
 211304                    b.Property<int?>("SubtitleStreamIndex")
 211305                        .HasColumnType("INTEGER");
 211306
 211307                    b.HasKey("ItemId", "UserId", "CustomDataKey");
 211308
 211309                    b.HasIndex("UserId");
 211310
 211311                    b.HasIndex("ItemId", "UserId", "IsFavorite");
 211312
 211313                    b.HasIndex("ItemId", "UserId", "LastPlayedDate");
 211314
 211315                    b.HasIndex("ItemId", "UserId", "PlaybackPositionTicks");
 211316
 211317                    b.HasIndex("ItemId", "UserId", "Played");
 211318
 211319                    b.ToTable("UserData");
 211320                });
 1321
 211322            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 211323                {
 211324                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211325                        .WithMany("AccessSchedules")
 211326                        .HasForeignKey("UserId")
 211327                        .OnDelete(DeleteBehavior.Cascade)
 211328                        .IsRequired();
 211329                });
 1330
 211331            modelBuilder.Entity("Jellyfin.Data.Entities.AncestorId", b =>
 211332                {
 211333                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211334                        .WithMany("Children")
 211335                        .HasForeignKey("ItemId")
 211336                        .OnDelete(DeleteBehavior.Cascade)
 211337                        .IsRequired();
 211338
 211339                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "ParentItem")
 211340                        .WithMany("ParentAncestors")
 211341                        .HasForeignKey("ParentItemId")
 211342                        .OnDelete(DeleteBehavior.Cascade)
 211343                        .IsRequired();
 211344
 211345                    b.Navigation("Item");
 211346
 211347                    b.Navigation("ParentItem");
 211348                });
 1349
 211350            modelBuilder.Entity("Jellyfin.Data.Entities.AttachmentStreamInfo", b =>
 211351                {
 211352                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211353                        .WithMany()
 211354                        .HasForeignKey("ItemId")
 211355                        .OnDelete(DeleteBehavior.Cascade)
 211356                        .IsRequired();
 211357
 211358                    b.Navigation("Item");
 211359                });
 1360
 211361            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemImageInfo", b =>
 211362                {
 211363                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211364                        .WithMany("Images")
 211365                        .HasForeignKey("ItemId")
 211366                        .OnDelete(DeleteBehavior.Cascade)
 211367                        .IsRequired();
 211368
 211369                    b.Navigation("Item");
 211370                });
 1371
 211372            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemMetadataField", b =>
 211373                {
 211374                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211375                        .WithMany("LockedFields")
 211376                        .HasForeignKey("ItemId")
 211377                        .OnDelete(DeleteBehavior.Cascade)
 211378                        .IsRequired();
 211379
 211380                    b.Navigation("Item");
 211381                });
 1382
 211383            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemProvider", b =>
 211384                {
 211385                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211386                        .WithMany("Provider")
 211387                        .HasForeignKey("ItemId")
 211388                        .OnDelete(DeleteBehavior.Cascade)
 211389                        .IsRequired();
 211390
 211391                    b.Navigation("Item");
 211392                });
 1393
 211394            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemTrailerType", b =>
 211395                {
 211396                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211397                        .WithMany("TrailerTypes")
 211398                        .HasForeignKey("ItemId")
 211399                        .OnDelete(DeleteBehavior.Cascade)
 211400                        .IsRequired();
 211401
 211402                    b.Navigation("Item");
 211403                });
 1404
 211405            modelBuilder.Entity("Jellyfin.Data.Entities.Chapter", b =>
 211406                {
 211407                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211408                        .WithMany("Chapters")
 211409                        .HasForeignKey("ItemId")
 211410                        .OnDelete(DeleteBehavior.Cascade)
 211411                        .IsRequired();
 211412
 211413                    b.Navigation("Item");
 211414                });
 1415
 211416            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 211417                {
 211418                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211419                        .WithMany("DisplayPreferences")
 211420                        .HasForeignKey("UserId")
 211421                        .OnDelete(DeleteBehavior.Cascade)
 211422                        .IsRequired();
 211423                });
 1424
 211425            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 211426                {
 211427                    b.HasOne("Jellyfin.Data.Entities.DisplayPreferences", null)
 211428                        .WithMany("HomeSections")
 211429                        .HasForeignKey("DisplayPreferencesId")
 211430                        .OnDelete(DeleteBehavior.Cascade)
 211431                        .IsRequired();
 211432                });
 1433
 211434            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 211435                {
 211436                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211437                        .WithOne("ProfileImage")
 211438                        .HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId")
 211439                        .OnDelete(DeleteBehavior.Cascade);
 211440                });
 1441
 211442            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 211443                {
 211444                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211445                        .WithMany("ItemDisplayPreferences")
 211446                        .HasForeignKey("UserId")
 211447                        .OnDelete(DeleteBehavior.Cascade)
 211448                        .IsRequired();
 211449                });
 1450
 211451            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValueMap", b =>
 211452                {
 211453                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211454                        .WithMany("ItemValues")
 211455                        .HasForeignKey("ItemId")
 211456                        .OnDelete(DeleteBehavior.Cascade)
 211457                        .IsRequired();
 211458
 211459                    b.HasOne("Jellyfin.Data.Entities.ItemValue", "ItemValue")
 211460                        .WithMany("BaseItemsMap")
 211461                        .HasForeignKey("ItemValueId")
 211462                        .OnDelete(DeleteBehavior.Cascade)
 211463                        .IsRequired();
 211464
 211465                    b.Navigation("Item");
 211466
 211467                    b.Navigation("ItemValue");
 211468                });
 1469
 211470            modelBuilder.Entity("Jellyfin.Data.Entities.MediaStreamInfo", b =>
 211471                {
 211472                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211473                        .WithMany("MediaStreams")
 211474                        .HasForeignKey("ItemId")
 211475                        .OnDelete(DeleteBehavior.Cascade)
 211476                        .IsRequired();
 211477
 211478                    b.Navigation("Item");
 211479                });
 1480
 211481            modelBuilder.Entity("Jellyfin.Data.Entities.PeopleBaseItemMap", b =>
 211482                {
 211483                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211484                        .WithMany("Peoples")
 211485                        .HasForeignKey("ItemId")
 211486                        .OnDelete(DeleteBehavior.Cascade)
 211487                        .IsRequired();
 211488
 211489                    b.HasOne("Jellyfin.Data.Entities.People", "People")
 211490                        .WithMany("BaseItems")
 211491                        .HasForeignKey("PeopleId")
 211492                        .OnDelete(DeleteBehavior.Cascade)
 211493                        .IsRequired();
 211494
 211495                    b.Navigation("Item");
 211496
 211497                    b.Navigation("People");
 211498                });
 1499
 211500            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 211501                {
 211502                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211503                        .WithMany("Permissions")
 211504                        .HasForeignKey("UserId")
 211505                        .OnDelete(DeleteBehavior.Cascade);
 211506                });
 1507
 211508            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 211509                {
 211510                    b.HasOne("Jellyfin.Data.Entities.User", null)
 211511                        .WithMany("Preferences")
 211512                        .HasForeignKey("UserId")
 211513                        .OnDelete(DeleteBehavior.Cascade);
 211514                });
 1515
 211516            modelBuilder.Entity("Jellyfin.Data.Entities.Security.Device", b =>
 211517                {
 211518                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 211519                        .WithMany()
 211520                        .HasForeignKey("UserId")
 211521                        .OnDelete(DeleteBehavior.Cascade)
 211522                        .IsRequired();
 211523
 211524                    b.Navigation("User");
 211525                });
 1526
 211527            modelBuilder.Entity("Jellyfin.Data.Entities.UserData", b =>
 211528                {
 211529                    b.HasOne("Jellyfin.Data.Entities.BaseItemEntity", "Item")
 211530                        .WithMany("UserData")
 211531                        .HasForeignKey("ItemId")
 211532                        .OnDelete(DeleteBehavior.Cascade)
 211533                        .IsRequired();
 211534
 211535                    b.HasOne("Jellyfin.Data.Entities.User", "User")
 211536                        .WithMany()
 211537                        .HasForeignKey("UserId")
 211538                        .OnDelete(DeleteBehavior.Cascade)
 211539                        .IsRequired();
 211540
 211541                    b.Navigation("Item");
 211542
 211543                    b.Navigation("User");
 211544                });
 1545
 211546            modelBuilder.Entity("Jellyfin.Data.Entities.BaseItemEntity", b =>
 211547                {
 211548                    b.Navigation("Chapters");
 211549
 211550                    b.Navigation("Children");
 211551
 211552                    b.Navigation("Images");
 211553
 211554                    b.Navigation("ItemValues");
 211555
 211556                    b.Navigation("LockedFields");
 211557
 211558                    b.Navigation("MediaStreams");
 211559
 211560                    b.Navigation("ParentAncestors");
 211561
 211562                    b.Navigation("Peoples");
 211563
 211564                    b.Navigation("Provider");
 211565
 211566                    b.Navigation("TrailerTypes");
 211567
 211568                    b.Navigation("UserData");
 211569                });
 1570
 211571            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 211572                {
 211573                    b.Navigation("HomeSections");
 211574                });
 1575
 211576            modelBuilder.Entity("Jellyfin.Data.Entities.ItemValue", b =>
 211577                {
 211578                    b.Navigation("BaseItemsMap");
 211579                });
 1580
 211581            modelBuilder.Entity("Jellyfin.Data.Entities.People", b =>
 211582                {
 211583                    b.Navigation("BaseItems");
 211584                });
 1585
 211586            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 211587                {
 211588                    b.Navigation("AccessSchedules");
 211589
 211590                    b.Navigation("DisplayPreferences");
 211591
 211592                    b.Navigation("ItemDisplayPreferences");
 211593
 211594                    b.Navigation("Permissions");
 211595
 211596                    b.Navigation("Preferences");
 211597
 211598                    b.Navigation("ProfileImage");
 211599                });
 1600#pragma warning restore 612, 618
 211601        }
 1602    }
 1603}