You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
509 B
18 lines
509 B
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);
|
|
}
|
|
}
|