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.
29 lines
875 B
29 lines
875 B
3 years ago
|
using Jellyfin.Data.Entities.Security;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||
|
|
||
|
namespace Jellyfin.Server.Implementations.ModelConfiguration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// FluentAPI configuration for the Device entity.
|
||
|
/// </summary>
|
||
|
public class DeviceConfiguration : IEntityTypeConfiguration<Device>
|
||
|
{
|
||
|
/// <inheritdoc/>
|
||
|
public void Configure(EntityTypeBuilder<Device> builder)
|
||
|
{
|
||
|
builder
|
||
|
.HasIndex(entity => new { entity.DeviceId, entity.DateLastActivity });
|
||
|
|
||
|
builder
|
||
|
.HasIndex(entity => new { entity.AccessToken, entity.DateLastActivity });
|
||
|
|
||
|
builder
|
||
|
.HasIndex(entity => new { entity.UserId, entity.DeviceId });
|
||
|
|
||
|
builder
|
||
|
.HasIndex(entity => entity.DeviceId);
|
||
|
}
|
||
|
}
|
||
|
}
|