aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs')
-rw-r--r--Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs b/Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs
deleted file mode 100644
index 9c22b114c..000000000
--- a/Jellyfin.Server.Implementations/ModelConfiguration/ItemValuesMapConfiguration.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using Jellyfin.Data.Entities;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.EntityFrameworkCore.Metadata.Builders;
-
-namespace Jellyfin.Server.Implementations.ModelConfiguration;
-
-/// <summary>
-/// itemvalues Configuration.
-/// </summary>
-public class ItemValuesMapConfiguration : IEntityTypeConfiguration<ItemValueMap>
-{
- /// <inheritdoc/>
- public void Configure(EntityTypeBuilder<ItemValueMap> builder)
- {
- builder.HasKey(e => new { e.ItemValueId, e.ItemId });
- builder.HasOne(e => e.Item);
- builder.HasOne(e => e.ItemValue);
- }
-}