< Summary - Jellyfin

Line coverage
99%
Covered lines: 1597
Uncovered lines: 11
Coverable lines: 1608
Total lines: 1706
Line coverage: 99.3%
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/20250326065026_AddInheritedParentalRatingSubValue.cs

#LineLine coverage
 1using Microsoft.EntityFrameworkCore.Migrations;
 2
 3#nullable disable
 4
 5namespace Jellyfin.Server.Implementations.Migrations
 6{
 7    /// <inheritdoc />
 8    public partial class AddInheritedParentalRatingSubValue : Migration
 9    {
 10        /// <inheritdoc />
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.RenameColumn(
 2114                name: "MaxParentalAgeRating",
 2115                table: "Users",
 2116                newName: "MaxParentalRatingScore");
 17
 2118            migrationBuilder.AddColumn<int>(
 2119                name: "MaxParentalRatingSubScore",
 2120                table: "Users",
 2121                type: "INTEGER",
 2122                nullable: true);
 23
 2124            migrationBuilder.AddColumn<int>(
 2125                name: "InheritedParentalRatingSubValue",
 2126                table: "BaseItems",
 2127                type: "INTEGER",
 2128                nullable: true);
 2129        }
 30
 31        /// <inheritdoc />
 32        protected override void Down(MigrationBuilder migrationBuilder)
 33        {
 034            migrationBuilder.DropColumn(
 035                name: "MaxParentalRatingSubScore",
 036                table: "Users");
 37
 038            migrationBuilder.DropColumn(
 039                name: "InheritedParentalRatingValue",
 040                table: "BaseItems");
 41
 042            migrationBuilder.RenameColumn(
 043                name: "MaxParentalRatingScore",
 044                table: "Users",
 045                newName: "MaxParentalAgeRating");
 046        }
 47    }
 48}

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