blob: 3cd5f8afbee9d9d8a51c1d4615c42ec5336cb65b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using Jellyfin.Data.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Jellyfin.Server.Implementations.ModelConfiguration
{
/// <summary>
/// FluentAPI configuration for the Permission entity.
/// </summary>
public class PreferenceConfiguration : IEntityTypeConfiguration<Preference>
{
/// <inheritdoc/>
public void Configure(EntityTypeBuilder<Preference> builder)
{
// Indexes
builder
.HasIndex(p => new { p.UserId, p.Kind })
.HasFilter("[UserId] IS NOT NULL")
.IsUnique();
}
}
}
|