mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	Add index for DateCreated on ActivityLogs Original-merge: 39b29eb9f1250a025f6a78b451c1a79df39ed5e9 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
		
			
				
	
	
		
			18 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |