diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-07 00:56:38 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-02-07 00:57:15 +0100 |
| commit | 8ddc35a1ced32b40ef2ee333f2adcc57f3725811 (patch) | |
| tree | 134a036949b07aac8c0c6590a5923e086f7a0c3a /src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs | |
| parent | 46ad25f47dbe286a97f0c45eaf98663a3105c49c (diff) | |
Optimize Indices
Diffstat (limited to 'src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs')
| -rw-r--r-- | src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs index 44bd01ad63..2abccd41f0 100644 --- a/src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs +++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/ModelConfiguration/LinkedChildConfiguration.cs @@ -14,8 +14,6 @@ public class LinkedChildConfiguration : IEntityTypeConfiguration<LinkedChildEnti { builder.ToTable("LinkedChildren"); builder.HasKey(e => new { e.ParentId, e.ChildId }); - builder.HasIndex(e => e.ParentId); - builder.HasIndex(e => e.ChildId); builder.HasIndex(e => new { e.ParentId, e.SortOrder }); builder.HasIndex(e => new { e.ParentId, e.ChildType }); builder.HasIndex(e => new { e.ChildId, e.ChildType }); |
