< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Migrations.JellyfinDbModelSnapshot
Assembly: Jellyfin.Database.Providers.Sqlite
File(s): /srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/JellyfinDbModelSnapshot.cs
Line coverage
100%
Covered lines: 1582
Uncovered lines: 0
Coverable lines: 1582
Total lines: 1655
Line coverage: 100%
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
BuildModel(...)100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/JellyfinDbModelSnapshot.cs

#LineLine coverage
 1// <auto-generated />
 2using System;
 3using Jellyfin.Database.Implementations;
 4using Microsoft.EntityFrameworkCore;
 5using Microsoft.EntityFrameworkCore.Infrastructure;
 6using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 7
 8#nullable disable
 9
 10namespace Jellyfin.Server.Implementations.Migrations
 11{
 12    [DbContext(typeof(JellyfinDbContext))]
 13    partial class JellyfinDbModelSnapshot : ModelSnapshot
 14    {
 15        protected override void BuildModel(ModelBuilder modelBuilder)
 16        {
 17#pragma warning disable 612, 618
 2218            modelBuilder.HasAnnotation("ProductVersion", "9.0.3");
 19
 2220            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AccessSchedule", b =>
 2221                {
 2222                    b.Property<int>("Id")
 2223                        .ValueGeneratedOnAdd()
 2224                        .HasColumnType("INTEGER");
 2225
 2226                    b.Property<int>("DayOfWeek")
 2227                        .HasColumnType("INTEGER");
 2228
 2229                    b.Property<double>("EndHour")
 2230                        .HasColumnType("REAL");
 2231
 2232                    b.Property<double>("StartHour")
 2233                        .HasColumnType("REAL");
 2234
 2235                    b.Property<Guid>("UserId")
 2236                        .HasColumnType("TEXT");
 2237
 2238                    b.HasKey("Id");
 2239
 2240                    b.HasIndex("UserId");
 2241
 2242                    b.ToTable("AccessSchedules");
 2243
 2244                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 2245                });
 46
 2247            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ActivityLog", b =>
 2248                {
 2249                    b.Property<int>("Id")
 2250                        .ValueGeneratedOnAdd()
 2251                        .HasColumnType("INTEGER");
 2252
 2253                    b.Property<DateTime>("DateCreated")
 2254                        .HasColumnType("TEXT");
 2255
 2256                    b.Property<string>("ItemId")
 2257                        .HasMaxLength(256)
 2258                        .HasColumnType("TEXT");
 2259
 2260                    b.Property<int>("LogSeverity")
 2261                        .HasColumnType("INTEGER");
 2262
 2263                    b.Property<string>("Name")
 2264                        .IsRequired()
 2265                        .HasMaxLength(512)
 2266                        .HasColumnType("TEXT");
 2267
 2268                    b.Property<string>("Overview")
 2269                        .HasMaxLength(512)
 2270                        .HasColumnType("TEXT");
 2271
 2272                    b.Property<uint>("RowVersion")
 2273                        .IsConcurrencyToken()
 2274                        .HasColumnType("INTEGER");
 2275
 2276                    b.Property<string>("ShortOverview")
 2277                        .HasMaxLength(512)
 2278                        .HasColumnType("TEXT");
 2279
 2280                    b.Property<string>("Type")
 2281                        .IsRequired()
 2282                        .HasMaxLength(256)
 2283                        .HasColumnType("TEXT");
 2284
 2285                    b.Property<Guid>("UserId")
 2286                        .HasColumnType("TEXT");
 2287
 2288                    b.HasKey("Id");
 2289
 2290                    b.HasIndex("DateCreated");
 2291
 2292                    b.ToTable("ActivityLogs");
 2293
 2294                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 2295                });
 96
 2297            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AncestorId", b =>
 2298                {
 2299                    b.Property<Guid>("ItemId")
 22100                        .HasColumnType("TEXT");
 22101
 22102                    b.Property<Guid>("ParentItemId")
 22103                        .HasColumnType("TEXT");
 22104
 22105                    b.HasKey("ItemId", "ParentItemId");
 22106
 22107                    b.HasIndex("ParentItemId");
 22108
 22109                    b.ToTable("AncestorIds");
 22110
 22111                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22112                });
 113
 22114            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AttachmentStreamInfo", b =>
 22115                {
 22116                    b.Property<Guid>("ItemId")
 22117                        .HasColumnType("TEXT");
 22118
 22119                    b.Property<int>("Index")
 22120                        .HasColumnType("INTEGER");
 22121
 22122                    b.Property<string>("Codec")
 22123                        .IsRequired()
 22124                        .HasColumnType("TEXT");
 22125
 22126                    b.Property<string>("CodecTag")
 22127                        .HasColumnType("TEXT");
 22128
 22129                    b.Property<string>("Comment")
 22130                        .HasColumnType("TEXT");
 22131
 22132                    b.Property<string>("Filename")
 22133                        .HasColumnType("TEXT");
 22134
 22135                    b.Property<string>("MimeType")
 22136                        .HasColumnType("TEXT");
 22137
 22138                    b.HasKey("ItemId", "Index");
 22139
 22140                    b.ToTable("AttachmentStreamInfos");
 22141
 22142                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22143                });
 144
 22145            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemEntity", b =>
 22146                {
 22147                    b.Property<Guid>("Id")
 22148                        .ValueGeneratedOnAdd()
 22149                        .HasColumnType("TEXT");
 22150
 22151                    b.Property<string>("Album")
 22152                        .HasColumnType("TEXT");
 22153
 22154                    b.Property<string>("AlbumArtists")
 22155                        .HasColumnType("TEXT");
 22156
 22157                    b.Property<string>("Artists")
 22158                        .HasColumnType("TEXT");
 22159
 22160                    b.Property<int?>("Audio")
 22161                        .HasColumnType("INTEGER");
 22162
 22163                    b.Property<Guid?>("ChannelId")
 22164                        .HasColumnType("TEXT");
 22165
 22166                    b.Property<string>("CleanName")
 22167                        .HasColumnType("TEXT");
 22168
 22169                    b.Property<float?>("CommunityRating")
 22170                        .HasColumnType("REAL");
 22171
 22172                    b.Property<float?>("CriticRating")
 22173                        .HasColumnType("REAL");
 22174
 22175                    b.Property<string>("CustomRating")
 22176                        .HasColumnType("TEXT");
 22177
 22178                    b.Property<string>("Data")
 22179                        .HasColumnType("TEXT");
 22180
 22181                    b.Property<DateTime?>("DateCreated")
 22182                        .HasColumnType("TEXT");
 22183
 22184                    b.Property<DateTime?>("DateLastMediaAdded")
 22185                        .HasColumnType("TEXT");
 22186
 22187                    b.Property<DateTime?>("DateLastRefreshed")
 22188                        .HasColumnType("TEXT");
 22189
 22190                    b.Property<DateTime?>("DateLastSaved")
 22191                        .HasColumnType("TEXT");
 22192
 22193                    b.Property<DateTime?>("DateModified")
 22194                        .HasColumnType("TEXT");
 22195
 22196                    b.Property<DateTime?>("EndDate")
 22197                        .HasColumnType("TEXT");
 22198
 22199                    b.Property<string>("EpisodeTitle")
 22200                        .HasColumnType("TEXT");
 22201
 22202                    b.Property<string>("ExternalId")
 22203                        .HasColumnType("TEXT");
 22204
 22205                    b.Property<string>("ExternalSeriesId")
 22206                        .HasColumnType("TEXT");
 22207
 22208                    b.Property<string>("ExternalServiceId")
 22209                        .HasColumnType("TEXT");
 22210
 22211                    b.Property<string>("ExtraIds")
 22212                        .HasColumnType("TEXT");
 22213
 22214                    b.Property<int?>("ExtraType")
 22215                        .HasColumnType("INTEGER");
 22216
 22217                    b.Property<string>("ForcedSortName")
 22218                        .HasColumnType("TEXT");
 22219
 22220                    b.Property<string>("Genres")
 22221                        .HasColumnType("TEXT");
 22222
 22223                    b.Property<int?>("Height")
 22224                        .HasColumnType("INTEGER");
 22225
 22226                    b.Property<int?>("IndexNumber")
 22227                        .HasColumnType("INTEGER");
 22228
 22229                    b.Property<int?>("InheritedParentalRatingSubValue")
 22230                        .HasColumnType("INTEGER");
 22231
 22232                    b.Property<int?>("InheritedParentalRatingValue")
 22233                        .HasColumnType("INTEGER");
 22234
 22235                    b.Property<bool>("IsFolder")
 22236                        .HasColumnType("INTEGER");
 22237
 22238                    b.Property<bool>("IsInMixedFolder")
 22239                        .HasColumnType("INTEGER");
 22240
 22241                    b.Property<bool>("IsLocked")
 22242                        .HasColumnType("INTEGER");
 22243
 22244                    b.Property<bool>("IsMovie")
 22245                        .HasColumnType("INTEGER");
 22246
 22247                    b.Property<bool>("IsRepeat")
 22248                        .HasColumnType("INTEGER");
 22249
 22250                    b.Property<bool>("IsSeries")
 22251                        .HasColumnType("INTEGER");
 22252
 22253                    b.Property<bool>("IsVirtualItem")
 22254                        .HasColumnType("INTEGER");
 22255
 22256                    b.Property<float?>("LUFS")
 22257                        .HasColumnType("REAL");
 22258
 22259                    b.Property<string>("MediaType")
 22260                        .HasColumnType("TEXT");
 22261
 22262                    b.Property<string>("Name")
 22263                        .HasColumnType("TEXT");
 22264
 22265                    b.Property<float?>("NormalizationGain")
 22266                        .HasColumnType("REAL");
 22267
 22268                    b.Property<string>("OfficialRating")
 22269                        .HasColumnType("TEXT");
 22270
 22271                    b.Property<string>("OriginalTitle")
 22272                        .HasColumnType("TEXT");
 22273
 22274                    b.Property<string>("Overview")
 22275                        .HasColumnType("TEXT");
 22276
 22277                    b.Property<string>("OwnerId")
 22278                        .HasColumnType("TEXT");
 22279
 22280                    b.Property<Guid?>("ParentId")
 22281                        .HasColumnType("TEXT");
 22282
 22283                    b.Property<int?>("ParentIndexNumber")
 22284                        .HasColumnType("INTEGER");
 22285
 22286                    b.Property<string>("Path")
 22287                        .HasColumnType("TEXT");
 22288
 22289                    b.Property<string>("PreferredMetadataCountryCode")
 22290                        .HasColumnType("TEXT");
 22291
 22292                    b.Property<string>("PreferredMetadataLanguage")
 22293                        .HasColumnType("TEXT");
 22294
 22295                    b.Property<DateTime?>("PremiereDate")
 22296                        .HasColumnType("TEXT");
 22297
 22298                    b.Property<string>("PresentationUniqueKey")
 22299                        .HasColumnType("TEXT");
 22300
 22301                    b.Property<string>("PrimaryVersionId")
 22302                        .HasColumnType("TEXT");
 22303
 22304                    b.Property<string>("ProductionLocations")
 22305                        .HasColumnType("TEXT");
 22306
 22307                    b.Property<int?>("ProductionYear")
 22308                        .HasColumnType("INTEGER");
 22309
 22310                    b.Property<long?>("RunTimeTicks")
 22311                        .HasColumnType("INTEGER");
 22312
 22313                    b.Property<Guid?>("SeasonId")
 22314                        .HasColumnType("TEXT");
 22315
 22316                    b.Property<string>("SeasonName")
 22317                        .HasColumnType("TEXT");
 22318
 22319                    b.Property<Guid?>("SeriesId")
 22320                        .HasColumnType("TEXT");
 22321
 22322                    b.Property<string>("SeriesName")
 22323                        .HasColumnType("TEXT");
 22324
 22325                    b.Property<string>("SeriesPresentationUniqueKey")
 22326                        .HasColumnType("TEXT");
 22327
 22328                    b.Property<string>("ShowId")
 22329                        .HasColumnType("TEXT");
 22330
 22331                    b.Property<long?>("Size")
 22332                        .HasColumnType("INTEGER");
 22333
 22334                    b.Property<string>("SortName")
 22335                        .HasColumnType("TEXT");
 22336
 22337                    b.Property<DateTime?>("StartDate")
 22338                        .HasColumnType("TEXT");
 22339
 22340                    b.Property<string>("Studios")
 22341                        .HasColumnType("TEXT");
 22342
 22343                    b.Property<string>("Tagline")
 22344                        .HasColumnType("TEXT");
 22345
 22346                    b.Property<string>("Tags")
 22347                        .HasColumnType("TEXT");
 22348
 22349                    b.Property<Guid?>("TopParentId")
 22350                        .HasColumnType("TEXT");
 22351
 22352                    b.Property<int?>("TotalBitrate")
 22353                        .HasColumnType("INTEGER");
 22354
 22355                    b.Property<string>("Type")
 22356                        .IsRequired()
 22357                        .HasColumnType("TEXT");
 22358
 22359                    b.Property<string>("UnratedType")
 22360                        .HasColumnType("TEXT");
 22361
 22362                    b.Property<int?>("Width")
 22363                        .HasColumnType("INTEGER");
 22364
 22365                    b.HasKey("Id");
 22366
 22367                    b.HasIndex("ParentId");
 22368
 22369                    b.HasIndex("Path");
 22370
 22371                    b.HasIndex("PresentationUniqueKey");
 22372
 22373                    b.HasIndex("TopParentId", "Id");
 22374
 22375                    b.HasIndex("Type", "TopParentId", "Id");
 22376
 22377                    b.HasIndex("Type", "TopParentId", "PresentationUniqueKey");
 22378
 22379                    b.HasIndex("Type", "TopParentId", "StartDate");
 22380
 22381                    b.HasIndex("Id", "Type", "IsFolder", "IsVirtualItem");
 22382
 22383                    b.HasIndex("MediaType", "TopParentId", "IsVirtualItem", "PresentationUniqueKey");
 22384
 22385                    b.HasIndex("Type", "SeriesPresentationUniqueKey", "IsFolder", "IsVirtualItem");
 22386
 22387                    b.HasIndex("Type", "SeriesPresentationUniqueKey", "PresentationUniqueKey", "SortName");
 22388
 22389                    b.HasIndex("IsFolder", "TopParentId", "IsVirtualItem", "PresentationUniqueKey", "DateCreated");
 22390
 22391                    b.HasIndex("Type", "TopParentId", "IsVirtualItem", "PresentationUniqueKey", "DateCreated");
 22392
 22393                    b.ToTable("BaseItems");
 22394
 22395                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22396                });
 397
 22398            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemImageInfo", b =>
 22399                {
 22400                    b.Property<Guid>("Id")
 22401                        .ValueGeneratedOnAdd()
 22402                        .HasColumnType("TEXT");
 22403
 22404                    b.Property<byte[]>("Blurhash")
 22405                        .HasColumnType("BLOB");
 22406
 22407                    b.Property<DateTime>("DateModified")
 22408                        .HasColumnType("TEXT");
 22409
 22410                    b.Property<int>("Height")
 22411                        .HasColumnType("INTEGER");
 22412
 22413                    b.Property<int>("ImageType")
 22414                        .HasColumnType("INTEGER");
 22415
 22416                    b.Property<Guid>("ItemId")
 22417                        .HasColumnType("TEXT");
 22418
 22419                    b.Property<string>("Path")
 22420                        .IsRequired()
 22421                        .HasColumnType("TEXT");
 22422
 22423                    b.Property<int>("Width")
 22424                        .HasColumnType("INTEGER");
 22425
 22426                    b.HasKey("Id");
 22427
 22428                    b.HasIndex("ItemId");
 22429
 22430                    b.ToTable("BaseItemImageInfos");
 22431
 22432                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22433                });
 434
 22435            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemMetadataField", b =>
 22436                {
 22437                    b.Property<int>("Id")
 22438                        .HasColumnType("INTEGER");
 22439
 22440                    b.Property<Guid>("ItemId")
 22441                        .HasColumnType("TEXT");
 22442
 22443                    b.HasKey("Id", "ItemId");
 22444
 22445                    b.HasIndex("ItemId");
 22446
 22447                    b.ToTable("BaseItemMetadataFields");
 22448
 22449                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22450                });
 451
 22452            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemProvider", b =>
 22453                {
 22454                    b.Property<Guid>("ItemId")
 22455                        .HasColumnType("TEXT");
 22456
 22457                    b.Property<string>("ProviderId")
 22458                        .HasColumnType("TEXT");
 22459
 22460                    b.Property<string>("ProviderValue")
 22461                        .IsRequired()
 22462                        .HasColumnType("TEXT");
 22463
 22464                    b.HasKey("ItemId", "ProviderId");
 22465
 22466                    b.HasIndex("ProviderId", "ProviderValue", "ItemId");
 22467
 22468                    b.ToTable("BaseItemProviders");
 22469
 22470                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22471                });
 472
 22473            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemTrailerType", b =>
 22474                {
 22475                    b.Property<int>("Id")
 22476                        .HasColumnType("INTEGER");
 22477
 22478                    b.Property<Guid>("ItemId")
 22479                        .HasColumnType("TEXT");
 22480
 22481                    b.HasKey("Id", "ItemId");
 22482
 22483                    b.HasIndex("ItemId");
 22484
 22485                    b.ToTable("BaseItemTrailerTypes");
 22486
 22487                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22488                });
 489
 22490            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Chapter", b =>
 22491                {
 22492                    b.Property<Guid>("ItemId")
 22493                        .HasColumnType("TEXT");
 22494
 22495                    b.Property<int>("ChapterIndex")
 22496                        .HasColumnType("INTEGER");
 22497
 22498                    b.Property<DateTime?>("ImageDateModified")
 22499                        .HasColumnType("TEXT");
 22500
 22501                    b.Property<string>("ImagePath")
 22502                        .HasColumnType("TEXT");
 22503
 22504                    b.Property<string>("Name")
 22505                        .HasColumnType("TEXT");
 22506
 22507                    b.Property<long>("StartPositionTicks")
 22508                        .HasColumnType("INTEGER");
 22509
 22510                    b.HasKey("ItemId", "ChapterIndex");
 22511
 22512                    b.ToTable("Chapters");
 22513
 22514                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22515                });
 516
 22517            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.CustomItemDisplayPreferences", b =>
 22518                {
 22519                    b.Property<int>("Id")
 22520                        .ValueGeneratedOnAdd()
 22521                        .HasColumnType("INTEGER");
 22522
 22523                    b.Property<string>("Client")
 22524                        .IsRequired()
 22525                        .HasMaxLength(32)
 22526                        .HasColumnType("TEXT");
 22527
 22528                    b.Property<Guid>("ItemId")
 22529                        .HasColumnType("TEXT");
 22530
 22531                    b.Property<string>("Key")
 22532                        .IsRequired()
 22533                        .HasColumnType("TEXT");
 22534
 22535                    b.Property<Guid>("UserId")
 22536                        .HasColumnType("TEXT");
 22537
 22538                    b.Property<string>("Value")
 22539                        .HasColumnType("TEXT");
 22540
 22541                    b.HasKey("Id");
 22542
 22543                    b.HasIndex("UserId", "ItemId", "Client", "Key")
 22544                        .IsUnique();
 22545
 22546                    b.ToTable("CustomItemDisplayPreferences");
 22547
 22548                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22549                });
 550
 22551            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.DisplayPreferences", b =>
 22552                {
 22553                    b.Property<int>("Id")
 22554                        .ValueGeneratedOnAdd()
 22555                        .HasColumnType("INTEGER");
 22556
 22557                    b.Property<int>("ChromecastVersion")
 22558                        .HasColumnType("INTEGER");
 22559
 22560                    b.Property<string>("Client")
 22561                        .IsRequired()
 22562                        .HasMaxLength(32)
 22563                        .HasColumnType("TEXT");
 22564
 22565                    b.Property<string>("DashboardTheme")
 22566                        .HasMaxLength(32)
 22567                        .HasColumnType("TEXT");
 22568
 22569                    b.Property<bool>("EnableNextVideoInfoOverlay")
 22570                        .HasColumnType("INTEGER");
 22571
 22572                    b.Property<int?>("IndexBy")
 22573                        .HasColumnType("INTEGER");
 22574
 22575                    b.Property<Guid>("ItemId")
 22576                        .HasColumnType("TEXT");
 22577
 22578                    b.Property<int>("ScrollDirection")
 22579                        .HasColumnType("INTEGER");
 22580
 22581                    b.Property<bool>("ShowBackdrop")
 22582                        .HasColumnType("INTEGER");
 22583
 22584                    b.Property<bool>("ShowSidebar")
 22585                        .HasColumnType("INTEGER");
 22586
 22587                    b.Property<int>("SkipBackwardLength")
 22588                        .HasColumnType("INTEGER");
 22589
 22590                    b.Property<int>("SkipForwardLength")
 22591                        .HasColumnType("INTEGER");
 22592
 22593                    b.Property<string>("TvHome")
 22594                        .HasMaxLength(32)
 22595                        .HasColumnType("TEXT");
 22596
 22597                    b.Property<Guid>("UserId")
 22598                        .HasColumnType("TEXT");
 22599
 22600                    b.HasKey("Id");
 22601
 22602                    b.HasIndex("UserId", "ItemId", "Client")
 22603                        .IsUnique();
 22604
 22605                    b.ToTable("DisplayPreferences");
 22606
 22607                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22608                });
 609
 22610            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.HomeSection", b =>
 22611                {
 22612                    b.Property<int>("Id")
 22613                        .ValueGeneratedOnAdd()
 22614                        .HasColumnType("INTEGER");
 22615
 22616                    b.Property<int>("DisplayPreferencesId")
 22617                        .HasColumnType("INTEGER");
 22618
 22619                    b.Property<int>("Order")
 22620                        .HasColumnType("INTEGER");
 22621
 22622                    b.Property<int>("Type")
 22623                        .HasColumnType("INTEGER");
 22624
 22625                    b.HasKey("Id");
 22626
 22627                    b.HasIndex("DisplayPreferencesId");
 22628
 22629                    b.ToTable("HomeSection");
 22630
 22631                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22632                });
 633
 22634            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ImageInfo", b =>
 22635                {
 22636                    b.Property<int>("Id")
 22637                        .ValueGeneratedOnAdd()
 22638                        .HasColumnType("INTEGER");
 22639
 22640                    b.Property<DateTime>("LastModified")
 22641                        .HasColumnType("TEXT");
 22642
 22643                    b.Property<string>("Path")
 22644                        .IsRequired()
 22645                        .HasMaxLength(512)
 22646                        .HasColumnType("TEXT");
 22647
 22648                    b.Property<Guid?>("UserId")
 22649                        .HasColumnType("TEXT");
 22650
 22651                    b.HasKey("Id");
 22652
 22653                    b.HasIndex("UserId")
 22654                        .IsUnique();
 22655
 22656                    b.ToTable("ImageInfos");
 22657
 22658                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22659                });
 660
 22661            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemDisplayPreferences", b =>
 22662                {
 22663                    b.Property<int>("Id")
 22664                        .ValueGeneratedOnAdd()
 22665                        .HasColumnType("INTEGER");
 22666
 22667                    b.Property<string>("Client")
 22668                        .IsRequired()
 22669                        .HasMaxLength(32)
 22670                        .HasColumnType("TEXT");
 22671
 22672                    b.Property<int?>("IndexBy")
 22673                        .HasColumnType("INTEGER");
 22674
 22675                    b.Property<Guid>("ItemId")
 22676                        .HasColumnType("TEXT");
 22677
 22678                    b.Property<bool>("RememberIndexing")
 22679                        .HasColumnType("INTEGER");
 22680
 22681                    b.Property<bool>("RememberSorting")
 22682                        .HasColumnType("INTEGER");
 22683
 22684                    b.Property<string>("SortBy")
 22685                        .IsRequired()
 22686                        .HasMaxLength(64)
 22687                        .HasColumnType("TEXT");
 22688
 22689                    b.Property<int>("SortOrder")
 22690                        .HasColumnType("INTEGER");
 22691
 22692                    b.Property<Guid>("UserId")
 22693                        .HasColumnType("TEXT");
 22694
 22695                    b.Property<int>("ViewType")
 22696                        .HasColumnType("INTEGER");
 22697
 22698                    b.HasKey("Id");
 22699
 22700                    b.HasIndex("UserId");
 22701
 22702                    b.ToTable("ItemDisplayPreferences");
 22703
 22704                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22705                });
 706
 22707            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemValue", b =>
 22708                {
 22709                    b.Property<Guid>("ItemValueId")
 22710                        .ValueGeneratedOnAdd()
 22711                        .HasColumnType("TEXT");
 22712
 22713                    b.Property<string>("CleanValue")
 22714                        .IsRequired()
 22715                        .HasColumnType("TEXT");
 22716
 22717                    b.Property<int>("Type")
 22718                        .HasColumnType("INTEGER");
 22719
 22720                    b.Property<string>("Value")
 22721                        .IsRequired()
 22722                        .HasColumnType("TEXT");
 22723
 22724                    b.HasKey("ItemValueId");
 22725
 22726                    b.HasIndex("Type", "CleanValue")
 22727                        .IsUnique();
 22728
 22729                    b.ToTable("ItemValues");
 22730
 22731                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22732                });
 733
 22734            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemValueMap", b =>
 22735                {
 22736                    b.Property<Guid>("ItemValueId")
 22737                        .HasColumnType("TEXT");
 22738
 22739                    b.Property<Guid>("ItemId")
 22740                        .HasColumnType("TEXT");
 22741
 22742                    b.HasKey("ItemValueId", "ItemId");
 22743
 22744                    b.HasIndex("ItemId");
 22745
 22746                    b.ToTable("ItemValuesMap");
 22747
 22748                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22749                });
 750
 22751            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.MediaSegment", b =>
 22752                {
 22753                    b.Property<Guid>("Id")
 22754                        .ValueGeneratedOnAdd()
 22755                        .HasColumnType("TEXT");
 22756
 22757                    b.Property<long>("EndTicks")
 22758                        .HasColumnType("INTEGER");
 22759
 22760                    b.Property<Guid>("ItemId")
 22761                        .HasColumnType("TEXT");
 22762
 22763                    b.Property<string>("SegmentProviderId")
 22764                        .IsRequired()
 22765                        .HasColumnType("TEXT");
 22766
 22767                    b.Property<long>("StartTicks")
 22768                        .HasColumnType("INTEGER");
 22769
 22770                    b.Property<int>("Type")
 22771                        .HasColumnType("INTEGER");
 22772
 22773                    b.HasKey("Id");
 22774
 22775                    b.ToTable("MediaSegments");
 22776
 22777                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22778                });
 779
 22780            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.MediaStreamInfo", b =>
 22781                {
 22782                    b.Property<Guid>("ItemId")
 22783                        .HasColumnType("TEXT");
 22784
 22785                    b.Property<int>("StreamIndex")
 22786                        .HasColumnType("INTEGER");
 22787
 22788                    b.Property<string>("AspectRatio")
 22789                        .HasColumnType("TEXT");
 22790
 22791                    b.Property<float?>("AverageFrameRate")
 22792                        .HasColumnType("REAL");
 22793
 22794                    b.Property<int?>("BitDepth")
 22795                        .HasColumnType("INTEGER");
 22796
 22797                    b.Property<int?>("BitRate")
 22798                        .HasColumnType("INTEGER");
 22799
 22800                    b.Property<int?>("BlPresentFlag")
 22801                        .HasColumnType("INTEGER");
 22802
 22803                    b.Property<string>("ChannelLayout")
 22804                        .HasColumnType("TEXT");
 22805
 22806                    b.Property<int?>("Channels")
 22807                        .HasColumnType("INTEGER");
 22808
 22809                    b.Property<string>("Codec")
 22810                        .HasColumnType("TEXT");
 22811
 22812                    b.Property<string>("CodecTag")
 22813                        .HasColumnType("TEXT");
 22814
 22815                    b.Property<string>("CodecTimeBase")
 22816                        .HasColumnType("TEXT");
 22817
 22818                    b.Property<string>("ColorPrimaries")
 22819                        .HasColumnType("TEXT");
 22820
 22821                    b.Property<string>("ColorSpace")
 22822                        .HasColumnType("TEXT");
 22823
 22824                    b.Property<string>("ColorTransfer")
 22825                        .HasColumnType("TEXT");
 22826
 22827                    b.Property<string>("Comment")
 22828                        .HasColumnType("TEXT");
 22829
 22830                    b.Property<int?>("DvBlSignalCompatibilityId")
 22831                        .HasColumnType("INTEGER");
 22832
 22833                    b.Property<int?>("DvLevel")
 22834                        .HasColumnType("INTEGER");
 22835
 22836                    b.Property<int?>("DvProfile")
 22837                        .HasColumnType("INTEGER");
 22838
 22839                    b.Property<int?>("DvVersionMajor")
 22840                        .HasColumnType("INTEGER");
 22841
 22842                    b.Property<int?>("DvVersionMinor")
 22843                        .HasColumnType("INTEGER");
 22844
 22845                    b.Property<int?>("ElPresentFlag")
 22846                        .HasColumnType("INTEGER");
 22847
 22848                    b.Property<int?>("Height")
 22849                        .HasColumnType("INTEGER");
 22850
 22851                    b.Property<bool?>("IsAnamorphic")
 22852                        .HasColumnType("INTEGER");
 22853
 22854                    b.Property<bool?>("IsAvc")
 22855                        .HasColumnType("INTEGER");
 22856
 22857                    b.Property<bool>("IsDefault")
 22858                        .HasColumnType("INTEGER");
 22859
 22860                    b.Property<bool>("IsExternal")
 22861                        .HasColumnType("INTEGER");
 22862
 22863                    b.Property<bool>("IsForced")
 22864                        .HasColumnType("INTEGER");
 22865
 22866                    b.Property<bool?>("IsHearingImpaired")
 22867                        .HasColumnType("INTEGER");
 22868
 22869                    b.Property<bool?>("IsInterlaced")
 22870                        .HasColumnType("INTEGER");
 22871
 22872                    b.Property<string>("KeyFrames")
 22873                        .HasColumnType("TEXT");
 22874
 22875                    b.Property<string>("Language")
 22876                        .HasColumnType("TEXT");
 22877
 22878                    b.Property<float?>("Level")
 22879                        .HasColumnType("REAL");
 22880
 22881                    b.Property<string>("NalLengthSize")
 22882                        .HasColumnType("TEXT");
 22883
 22884                    b.Property<string>("Path")
 22885                        .HasColumnType("TEXT");
 22886
 22887                    b.Property<string>("PixelFormat")
 22888                        .HasColumnType("TEXT");
 22889
 22890                    b.Property<string>("Profile")
 22891                        .HasColumnType("TEXT");
 22892
 22893                    b.Property<float?>("RealFrameRate")
 22894                        .HasColumnType("REAL");
 22895
 22896                    b.Property<int?>("RefFrames")
 22897                        .HasColumnType("INTEGER");
 22898
 22899                    b.Property<int?>("Rotation")
 22900                        .HasColumnType("INTEGER");
 22901
 22902                    b.Property<int?>("RpuPresentFlag")
 22903                        .HasColumnType("INTEGER");
 22904
 22905                    b.Property<int?>("SampleRate")
 22906                        .HasColumnType("INTEGER");
 22907
 22908                    b.Property<int>("StreamType")
 22909                        .HasColumnType("INTEGER");
 22910
 22911                    b.Property<string>("TimeBase")
 22912                        .HasColumnType("TEXT");
 22913
 22914                    b.Property<string>("Title")
 22915                        .HasColumnType("TEXT");
 22916
 22917                    b.Property<int?>("Width")
 22918                        .HasColumnType("INTEGER");
 22919
 22920                    b.HasKey("ItemId", "StreamIndex");
 22921
 22922                    b.HasIndex("StreamIndex");
 22923
 22924                    b.HasIndex("StreamType");
 22925
 22926                    b.HasIndex("StreamIndex", "StreamType");
 22927
 22928                    b.HasIndex("StreamIndex", "StreamType", "Language");
 22929
 22930                    b.ToTable("MediaStreamInfos");
 22931
 22932                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22933                });
 934
 22935            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.People", b =>
 22936                {
 22937                    b.Property<Guid>("Id")
 22938                        .ValueGeneratedOnAdd()
 22939                        .HasColumnType("TEXT");
 22940
 22941                    b.Property<string>("Name")
 22942                        .IsRequired()
 22943                        .HasColumnType("TEXT");
 22944
 22945                    b.Property<string>("PersonType")
 22946                        .HasColumnType("TEXT");
 22947
 22948                    b.HasKey("Id");
 22949
 22950                    b.HasIndex("Name");
 22951
 22952                    b.ToTable("Peoples");
 22953
 22954                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22955                });
 956
 22957            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.PeopleBaseItemMap", b =>
 22958                {
 22959                    b.Property<Guid>("ItemId")
 22960                        .HasColumnType("TEXT");
 22961
 22962                    b.Property<Guid>("PeopleId")
 22963                        .HasColumnType("TEXT");
 22964
 22965                    b.Property<int?>("ListOrder")
 22966                        .HasColumnType("INTEGER");
 22967
 22968                    b.Property<string>("Role")
 22969                        .HasColumnType("TEXT");
 22970
 22971                    b.Property<int?>("SortOrder")
 22972                        .HasColumnType("INTEGER");
 22973
 22974                    b.HasKey("ItemId", "PeopleId");
 22975
 22976                    b.HasIndex("PeopleId");
 22977
 22978                    b.HasIndex("ItemId", "ListOrder");
 22979
 22980                    b.HasIndex("ItemId", "SortOrder");
 22981
 22982                    b.ToTable("PeopleBaseItemMap");
 22983
 22984                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 22985                });
 986
 22987            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Permission", b =>
 22988                {
 22989                    b.Property<int>("Id")
 22990                        .ValueGeneratedOnAdd()
 22991                        .HasColumnType("INTEGER");
 22992
 22993                    b.Property<int>("Kind")
 22994                        .HasColumnType("INTEGER");
 22995
 22996                    b.Property<Guid?>("Permission_Permissions_Guid")
 22997                        .HasColumnType("TEXT");
 22998
 22999                    b.Property<uint>("RowVersion")
 221000                        .IsConcurrencyToken()
 221001                        .HasColumnType("INTEGER");
 221002
 221003                    b.Property<Guid?>("UserId")
 221004                        .HasColumnType("TEXT");
 221005
 221006                    b.Property<bool>("Value")
 221007                        .HasColumnType("INTEGER");
 221008
 221009                    b.HasKey("Id");
 221010
 221011                    b.HasIndex("UserId", "Kind")
 221012                        .IsUnique()
 221013                        .HasFilter("[UserId] IS NOT NULL");
 221014
 221015                    b.ToTable("Permissions");
 221016
 221017                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221018                });
 1019
 221020            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Preference", b =>
 221021                {
 221022                    b.Property<int>("Id")
 221023                        .ValueGeneratedOnAdd()
 221024                        .HasColumnType("INTEGER");
 221025
 221026                    b.Property<int>("Kind")
 221027                        .HasColumnType("INTEGER");
 221028
 221029                    b.Property<Guid?>("Preference_Preferences_Guid")
 221030                        .HasColumnType("TEXT");
 221031
 221032                    b.Property<uint>("RowVersion")
 221033                        .IsConcurrencyToken()
 221034                        .HasColumnType("INTEGER");
 221035
 221036                    b.Property<Guid?>("UserId")
 221037                        .HasColumnType("TEXT");
 221038
 221039                    b.Property<string>("Value")
 221040                        .IsRequired()
 221041                        .HasMaxLength(65535)
 221042                        .HasColumnType("TEXT");
 221043
 221044                    b.HasKey("Id");
 221045
 221046                    b.HasIndex("UserId", "Kind")
 221047                        .IsUnique()
 221048                        .HasFilter("[UserId] IS NOT NULL");
 221049
 221050                    b.ToTable("Preferences");
 221051
 221052                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221053                });
 1054
 221055            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Security.ApiKey", b =>
 221056                {
 221057                    b.Property<int>("Id")
 221058                        .ValueGeneratedOnAdd()
 221059                        .HasColumnType("INTEGER");
 221060
 221061                    b.Property<string>("AccessToken")
 221062                        .IsRequired()
 221063                        .HasColumnType("TEXT");
 221064
 221065                    b.Property<DateTime>("DateCreated")
 221066                        .HasColumnType("TEXT");
 221067
 221068                    b.Property<DateTime>("DateLastActivity")
 221069                        .HasColumnType("TEXT");
 221070
 221071                    b.Property<string>("Name")
 221072                        .IsRequired()
 221073                        .HasMaxLength(64)
 221074                        .HasColumnType("TEXT");
 221075
 221076                    b.HasKey("Id");
 221077
 221078                    b.HasIndex("AccessToken")
 221079                        .IsUnique();
 221080
 221081                    b.ToTable("ApiKeys");
 221082
 221083                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221084                });
 1085
 221086            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Security.Device", b =>
 221087                {
 221088                    b.Property<int>("Id")
 221089                        .ValueGeneratedOnAdd()
 221090                        .HasColumnType("INTEGER");
 221091
 221092                    b.Property<string>("AccessToken")
 221093                        .IsRequired()
 221094                        .HasColumnType("TEXT");
 221095
 221096                    b.Property<string>("AppName")
 221097                        .IsRequired()
 221098                        .HasMaxLength(64)
 221099                        .HasColumnType("TEXT");
 221100
 221101                    b.Property<string>("AppVersion")
 221102                        .IsRequired()
 221103                        .HasMaxLength(32)
 221104                        .HasColumnType("TEXT");
 221105
 221106                    b.Property<DateTime>("DateCreated")
 221107                        .HasColumnType("TEXT");
 221108
 221109                    b.Property<DateTime>("DateLastActivity")
 221110                        .HasColumnType("TEXT");
 221111
 221112                    b.Property<DateTime>("DateModified")
 221113                        .HasColumnType("TEXT");
 221114
 221115                    b.Property<string>("DeviceId")
 221116                        .IsRequired()
 221117                        .HasMaxLength(256)
 221118                        .HasColumnType("TEXT");
 221119
 221120                    b.Property<string>("DeviceName")
 221121                        .IsRequired()
 221122                        .HasMaxLength(64)
 221123                        .HasColumnType("TEXT");
 221124
 221125                    b.Property<bool>("IsActive")
 221126                        .HasColumnType("INTEGER");
 221127
 221128                    b.Property<Guid>("UserId")
 221129                        .HasColumnType("TEXT");
 221130
 221131                    b.HasKey("Id");
 221132
 221133                    b.HasIndex("DeviceId");
 221134
 221135                    b.HasIndex("AccessToken", "DateLastActivity");
 221136
 221137                    b.HasIndex("DeviceId", "DateLastActivity");
 221138
 221139                    b.HasIndex("UserId", "DeviceId");
 221140
 221141                    b.ToTable("Devices");
 221142
 221143                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221144                });
 1145
 221146            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Security.DeviceOptions", b =>
 221147                {
 221148                    b.Property<int>("Id")
 221149                        .ValueGeneratedOnAdd()
 221150                        .HasColumnType("INTEGER");
 221151
 221152                    b.Property<string>("CustomName")
 221153                        .HasColumnType("TEXT");
 221154
 221155                    b.Property<string>("DeviceId")
 221156                        .IsRequired()
 221157                        .HasColumnType("TEXT");
 221158
 221159                    b.HasKey("Id");
 221160
 221161                    b.HasIndex("DeviceId")
 221162                        .IsUnique();
 221163
 221164                    b.ToTable("DeviceOptions");
 221165
 221166                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221167                });
 1168
 221169            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.TrickplayInfo", b =>
 221170                {
 221171                    b.Property<Guid>("ItemId")
 221172                        .HasColumnType("TEXT");
 221173
 221174                    b.Property<int>("Width")
 221175                        .HasColumnType("INTEGER");
 221176
 221177                    b.Property<int>("Bandwidth")
 221178                        .HasColumnType("INTEGER");
 221179
 221180                    b.Property<int>("Height")
 221181                        .HasColumnType("INTEGER");
 221182
 221183                    b.Property<int>("Interval")
 221184                        .HasColumnType("INTEGER");
 221185
 221186                    b.Property<int>("ThumbnailCount")
 221187                        .HasColumnType("INTEGER");
 221188
 221189                    b.Property<int>("TileHeight")
 221190                        .HasColumnType("INTEGER");
 221191
 221192                    b.Property<int>("TileWidth")
 221193                        .HasColumnType("INTEGER");
 221194
 221195                    b.HasKey("ItemId", "Width");
 221196
 221197                    b.ToTable("TrickplayInfos");
 221198
 221199                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221200                });
 1201
 221202            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.User", b =>
 221203                {
 221204                    b.Property<Guid>("Id")
 221205                        .ValueGeneratedOnAdd()
 221206                        .HasColumnType("TEXT");
 221207
 221208                    b.Property<string>("AudioLanguagePreference")
 221209                        .HasMaxLength(255)
 221210                        .HasColumnType("TEXT");
 221211
 221212                    b.Property<string>("AuthenticationProviderId")
 221213                        .IsRequired()
 221214                        .HasMaxLength(255)
 221215                        .HasColumnType("TEXT");
 221216
 221217                    b.Property<string>("CastReceiverId")
 221218                        .HasMaxLength(32)
 221219                        .HasColumnType("TEXT");
 221220
 221221                    b.Property<bool>("DisplayCollectionsView")
 221222                        .HasColumnType("INTEGER");
 221223
 221224                    b.Property<bool>("DisplayMissingEpisodes")
 221225                        .HasColumnType("INTEGER");
 221226
 221227                    b.Property<bool>("EnableAutoLogin")
 221228                        .HasColumnType("INTEGER");
 221229
 221230                    b.Property<bool>("EnableLocalPassword")
 221231                        .HasColumnType("INTEGER");
 221232
 221233                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 221234                        .HasColumnType("INTEGER");
 221235
 221236                    b.Property<bool>("EnableUserPreferenceAccess")
 221237                        .HasColumnType("INTEGER");
 221238
 221239                    b.Property<bool>("HidePlayedInLatest")
 221240                        .HasColumnType("INTEGER");
 221241
 221242                    b.Property<long>("InternalId")
 221243                        .HasColumnType("INTEGER");
 221244
 221245                    b.Property<int>("InvalidLoginAttemptCount")
 221246                        .HasColumnType("INTEGER");
 221247
 221248                    b.Property<DateTime?>("LastActivityDate")
 221249                        .HasColumnType("TEXT");
 221250
 221251                    b.Property<DateTime?>("LastLoginDate")
 221252                        .HasColumnType("TEXT");
 221253
 221254                    b.Property<int?>("LoginAttemptsBeforeLockout")
 221255                        .HasColumnType("INTEGER");
 221256
 221257                    b.Property<int>("MaxActiveSessions")
 221258                        .HasColumnType("INTEGER");
 221259
 221260                    b.Property<int?>("MaxParentalRatingScore")
 221261                        .HasColumnType("INTEGER");
 221262
 221263                    b.Property<int?>("MaxParentalRatingSubScore")
 221264                        .HasColumnType("INTEGER");
 221265
 221266                    b.Property<bool>("MustUpdatePassword")
 221267                        .HasColumnType("INTEGER");
 221268
 221269                    b.Property<string>("Password")
 221270                        .HasMaxLength(65535)
 221271                        .HasColumnType("TEXT");
 221272
 221273                    b.Property<string>("PasswordResetProviderId")
 221274                        .IsRequired()
 221275                        .HasMaxLength(255)
 221276                        .HasColumnType("TEXT");
 221277
 221278                    b.Property<bool>("PlayDefaultAudioTrack")
 221279                        .HasColumnType("INTEGER");
 221280
 221281                    b.Property<bool>("RememberAudioSelections")
 221282                        .HasColumnType("INTEGER");
 221283
 221284                    b.Property<bool>("RememberSubtitleSelections")
 221285                        .HasColumnType("INTEGER");
 221286
 221287                    b.Property<int?>("RemoteClientBitrateLimit")
 221288                        .HasColumnType("INTEGER");
 221289
 221290                    b.Property<uint>("RowVersion")
 221291                        .IsConcurrencyToken()
 221292                        .HasColumnType("INTEGER");
 221293
 221294                    b.Property<string>("SubtitleLanguagePreference")
 221295                        .HasMaxLength(255)
 221296                        .HasColumnType("TEXT");
 221297
 221298                    b.Property<int>("SubtitleMode")
 221299                        .HasColumnType("INTEGER");
 221300
 221301                    b.Property<int>("SyncPlayAccess")
 221302                        .HasColumnType("INTEGER");
 221303
 221304                    b.Property<string>("Username")
 221305                        .IsRequired()
 221306                        .HasMaxLength(255)
 221307                        .HasColumnType("TEXT");
 221308
 221309                    b.HasKey("Id");
 221310
 221311                    b.HasIndex("Username")
 221312                        .IsUnique();
 221313
 221314                    b.ToTable("Users");
 221315
 221316                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221317                });
 1318
 221319            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.UserData", b =>
 221320                {
 221321                    b.Property<Guid>("ItemId")
 221322                        .HasColumnType("TEXT");
 221323
 221324                    b.Property<Guid>("UserId")
 221325                        .HasColumnType("TEXT");
 221326
 221327                    b.Property<string>("CustomDataKey")
 221328                        .HasColumnType("TEXT");
 221329
 221330                    b.Property<int?>("AudioStreamIndex")
 221331                        .HasColumnType("INTEGER");
 221332
 221333                    b.Property<bool>("IsFavorite")
 221334                        .HasColumnType("INTEGER");
 221335
 221336                    b.Property<DateTime?>("LastPlayedDate")
 221337                        .HasColumnType("TEXT");
 221338
 221339                    b.Property<bool?>("Likes")
 221340                        .HasColumnType("INTEGER");
 221341
 221342                    b.Property<int>("PlayCount")
 221343                        .HasColumnType("INTEGER");
 221344
 221345                    b.Property<long>("PlaybackPositionTicks")
 221346                        .HasColumnType("INTEGER");
 221347
 221348                    b.Property<bool>("Played")
 221349                        .HasColumnType("INTEGER");
 221350
 221351                    b.Property<double?>("Rating")
 221352                        .HasColumnType("REAL");
 221353
 221354                    b.Property<int?>("SubtitleStreamIndex")
 221355                        .HasColumnType("INTEGER");
 221356
 221357                    b.HasKey("ItemId", "UserId", "CustomDataKey");
 221358
 221359                    b.HasIndex("UserId");
 221360
 221361                    b.HasIndex("ItemId", "UserId", "IsFavorite");
 221362
 221363                    b.HasIndex("ItemId", "UserId", "LastPlayedDate");
 221364
 221365                    b.HasIndex("ItemId", "UserId", "PlaybackPositionTicks");
 221366
 221367                    b.HasIndex("ItemId", "UserId", "Played");
 221368
 221369                    b.ToTable("UserData");
 221370
 221371                    b.HasAnnotation("Sqlite:UseSqlReturningClause", false);
 221372                });
 1373
 221374            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AccessSchedule", b =>
 221375                {
 221376                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221377                        .WithMany("AccessSchedules")
 221378                        .HasForeignKey("UserId")
 221379                        .OnDelete(DeleteBehavior.Cascade)
 221380                        .IsRequired();
 221381                });
 1382
 221383            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AncestorId", b =>
 221384                {
 221385                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221386                        .WithMany("Children")
 221387                        .HasForeignKey("ItemId")
 221388                        .OnDelete(DeleteBehavior.Cascade)
 221389                        .IsRequired();
 221390
 221391                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "ParentItem")
 221392                        .WithMany("ParentAncestors")
 221393                        .HasForeignKey("ParentItemId")
 221394                        .OnDelete(DeleteBehavior.Cascade)
 221395                        .IsRequired();
 221396
 221397                    b.Navigation("Item");
 221398
 221399                    b.Navigation("ParentItem");
 221400                });
 1401
 221402            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.AttachmentStreamInfo", b =>
 221403                {
 221404                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221405                        .WithMany()
 221406                        .HasForeignKey("ItemId")
 221407                        .OnDelete(DeleteBehavior.Cascade)
 221408                        .IsRequired();
 221409
 221410                    b.Navigation("Item");
 221411                });
 1412
 221413            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemImageInfo", b =>
 221414                {
 221415                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221416                        .WithMany("Images")
 221417                        .HasForeignKey("ItemId")
 221418                        .OnDelete(DeleteBehavior.Cascade)
 221419                        .IsRequired();
 221420
 221421                    b.Navigation("Item");
 221422                });
 1423
 221424            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemMetadataField", b =>
 221425                {
 221426                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221427                        .WithMany("LockedFields")
 221428                        .HasForeignKey("ItemId")
 221429                        .OnDelete(DeleteBehavior.Cascade)
 221430                        .IsRequired();
 221431
 221432                    b.Navigation("Item");
 221433                });
 1434
 221435            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemProvider", b =>
 221436                {
 221437                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221438                        .WithMany("Provider")
 221439                        .HasForeignKey("ItemId")
 221440                        .OnDelete(DeleteBehavior.Cascade)
 221441                        .IsRequired();
 221442
 221443                    b.Navigation("Item");
 221444                });
 1445
 221446            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemTrailerType", b =>
 221447                {
 221448                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221449                        .WithMany("TrailerTypes")
 221450                        .HasForeignKey("ItemId")
 221451                        .OnDelete(DeleteBehavior.Cascade)
 221452                        .IsRequired();
 221453
 221454                    b.Navigation("Item");
 221455                });
 1456
 221457            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Chapter", b =>
 221458                {
 221459                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221460                        .WithMany("Chapters")
 221461                        .HasForeignKey("ItemId")
 221462                        .OnDelete(DeleteBehavior.Cascade)
 221463                        .IsRequired();
 221464
 221465                    b.Navigation("Item");
 221466                });
 1467
 221468            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.DisplayPreferences", b =>
 221469                {
 221470                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221471                        .WithMany("DisplayPreferences")
 221472                        .HasForeignKey("UserId")
 221473                        .OnDelete(DeleteBehavior.Cascade)
 221474                        .IsRequired();
 221475                });
 1476
 221477            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.HomeSection", b =>
 221478                {
 221479                    b.HasOne("Jellyfin.Database.Implementations.Entities.DisplayPreferences", null)
 221480                        .WithMany("HomeSections")
 221481                        .HasForeignKey("DisplayPreferencesId")
 221482                        .OnDelete(DeleteBehavior.Cascade)
 221483                        .IsRequired();
 221484                });
 1485
 221486            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ImageInfo", b =>
 221487                {
 221488                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221489                        .WithOne("ProfileImage")
 221490                        .HasForeignKey("Jellyfin.Database.Implementations.Entities.ImageInfo", "UserId")
 221491                        .OnDelete(DeleteBehavior.Cascade);
 221492                });
 1493
 221494            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemDisplayPreferences", b =>
 221495                {
 221496                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221497                        .WithMany("ItemDisplayPreferences")
 221498                        .HasForeignKey("UserId")
 221499                        .OnDelete(DeleteBehavior.Cascade)
 221500                        .IsRequired();
 221501                });
 1502
 221503            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemValueMap", b =>
 221504                {
 221505                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221506                        .WithMany("ItemValues")
 221507                        .HasForeignKey("ItemId")
 221508                        .OnDelete(DeleteBehavior.Cascade)
 221509                        .IsRequired();
 221510
 221511                    b.HasOne("Jellyfin.Database.Implementations.Entities.ItemValue", "ItemValue")
 221512                        .WithMany("BaseItemsMap")
 221513                        .HasForeignKey("ItemValueId")
 221514                        .OnDelete(DeleteBehavior.Cascade)
 221515                        .IsRequired();
 221516
 221517                    b.Navigation("Item");
 221518
 221519                    b.Navigation("ItemValue");
 221520                });
 1521
 221522            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.MediaStreamInfo", b =>
 221523                {
 221524                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221525                        .WithMany("MediaStreams")
 221526                        .HasForeignKey("ItemId")
 221527                        .OnDelete(DeleteBehavior.Cascade)
 221528                        .IsRequired();
 221529
 221530                    b.Navigation("Item");
 221531                });
 1532
 221533            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.PeopleBaseItemMap", b =>
 221534                {
 221535                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221536                        .WithMany("Peoples")
 221537                        .HasForeignKey("ItemId")
 221538                        .OnDelete(DeleteBehavior.Cascade)
 221539                        .IsRequired();
 221540
 221541                    b.HasOne("Jellyfin.Database.Implementations.Entities.People", "People")
 221542                        .WithMany("BaseItems")
 221543                        .HasForeignKey("PeopleId")
 221544                        .OnDelete(DeleteBehavior.Cascade)
 221545                        .IsRequired();
 221546
 221547                    b.Navigation("Item");
 221548
 221549                    b.Navigation("People");
 221550                });
 1551
 221552            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Permission", b =>
 221553                {
 221554                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221555                        .WithMany("Permissions")
 221556                        .HasForeignKey("UserId")
 221557                        .OnDelete(DeleteBehavior.Cascade);
 221558                });
 1559
 221560            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Preference", b =>
 221561                {
 221562                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", null)
 221563                        .WithMany("Preferences")
 221564                        .HasForeignKey("UserId")
 221565                        .OnDelete(DeleteBehavior.Cascade);
 221566                });
 1567
 221568            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.Security.Device", b =>
 221569                {
 221570                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", "User")
 221571                        .WithMany()
 221572                        .HasForeignKey("UserId")
 221573                        .OnDelete(DeleteBehavior.Cascade)
 221574                        .IsRequired();
 221575
 221576                    b.Navigation("User");
 221577                });
 1578
 221579            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.UserData", b =>
 221580                {
 221581                    b.HasOne("Jellyfin.Database.Implementations.Entities.BaseItemEntity", "Item")
 221582                        .WithMany("UserData")
 221583                        .HasForeignKey("ItemId")
 221584                        .OnDelete(DeleteBehavior.Cascade)
 221585                        .IsRequired();
 221586
 221587                    b.HasOne("Jellyfin.Database.Implementations.Entities.User", "User")
 221588                        .WithMany()
 221589                        .HasForeignKey("UserId")
 221590                        .OnDelete(DeleteBehavior.Cascade)
 221591                        .IsRequired();
 221592
 221593                    b.Navigation("Item");
 221594
 221595                    b.Navigation("User");
 221596                });
 1597
 221598            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.BaseItemEntity", b =>
 221599                {
 221600                    b.Navigation("Chapters");
 221601
 221602                    b.Navigation("Children");
 221603
 221604                    b.Navigation("Images");
 221605
 221606                    b.Navigation("ItemValues");
 221607
 221608                    b.Navigation("LockedFields");
 221609
 221610                    b.Navigation("MediaStreams");
 221611
 221612                    b.Navigation("ParentAncestors");
 221613
 221614                    b.Navigation("Peoples");
 221615
 221616                    b.Navigation("Provider");
 221617
 221618                    b.Navigation("TrailerTypes");
 221619
 221620                    b.Navigation("UserData");
 221621                });
 1622
 221623            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.DisplayPreferences", b =>
 221624                {
 221625                    b.Navigation("HomeSections");
 221626                });
 1627
 221628            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.ItemValue", b =>
 221629                {
 221630                    b.Navigation("BaseItemsMap");
 221631                });
 1632
 221633            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.People", b =>
 221634                {
 221635                    b.Navigation("BaseItems");
 221636                });
 1637
 221638            modelBuilder.Entity("Jellyfin.Database.Implementations.Entities.User", b =>
 221639                {
 221640                    b.Navigation("AccessSchedules");
 221641
 221642                    b.Navigation("DisplayPreferences");
 221643
 221644                    b.Navigation("ItemDisplayPreferences");
 221645
 221646                    b.Navigation("Permissions");
 221647
 221648                    b.Navigation("Preferences");
 221649
 221650                    b.Navigation("ProfileImage");
 221651                });
 1652#pragma warning restore 612, 618
 221653        }
 1654    }
 1655}