mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
19 lines
555 B
C#
19 lines
555 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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|