< Summary - Jellyfin

Line coverage
99%
Covered lines: 1551
Uncovered lines: 15
Coverable lines: 1566
Total lines: 1664
Line coverage: 99%
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/20241111135439_AddedCustomDataKeyKey.cs

#LineLine coverage
 1using Microsoft.EntityFrameworkCore.Migrations;
 2
 3#nullable disable
 4
 5namespace Jellyfin.Server.Implementations.Migrations
 6{
 7    /// <inheritdoc />
 8    public partial class AddedCustomDataKeyKey : Migration
 9    {
 10        /// <inheritdoc />
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.DropPrimaryKey(
 2114                name: "PK_UserData",
 2115                table: "UserData");
 16
 2117            migrationBuilder.AlterColumn<string>(
 2118                name: "CustomDataKey",
 2119                table: "UserData",
 2120                type: "TEXT",
 2121                nullable: false,
 2122                defaultValue: string.Empty,
 2123                oldClrType: typeof(string),
 2124                oldType: "TEXT",
 2125                oldNullable: true);
 26
 2127            migrationBuilder.AddPrimaryKey(
 2128                name: "PK_UserData",
 2129                table: "UserData",
 2130                columns: new[] { "ItemId", "UserId", "CustomDataKey" });
 2131        }
 32
 33        /// <inheritdoc />
 34        protected override void Down(MigrationBuilder migrationBuilder)
 35        {
 036            migrationBuilder.DropPrimaryKey(
 037                name: "PK_UserData",
 038                table: "UserData");
 39
 040            migrationBuilder.AlterColumn<string>(
 041                name: "CustomDataKey",
 042                table: "UserData",
 043                type: "TEXT",
 044                nullable: true,
 045                oldClrType: typeof(string),
 046                oldType: "TEXT");
 47
 048            migrationBuilder.AddPrimaryKey(
 049                name: "PK_UserData",
 050                table: "UserData",
 051                columns: new[] { "ItemId", "UserId" });
 052        }
 53    }
 54}

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