aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs')
-rw-r--r--Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs b/Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs
deleted file mode 100644
index 9a63ed9f2..000000000
--- a/Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using Jellyfin.Data.Entities;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.EntityFrameworkCore.Metadata.Builders;
-
-namespace Jellyfin.Server.Implementations.ModelConfiguration;
-
-/// <summary>
-/// FluentAPI configuration for the ActivityLog entity.
-/// </summary>
-public class ActivityLogConfiguration : IEntityTypeConfiguration<ActivityLog>
-{
- /// <inheritdoc/>
- public void Configure(EntityTypeBuilder<ActivityLog> builder)
- {
- builder.HasIndex(entity => entity.DateCreated);
- }
-}