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.
26 lines
819 B
26 lines
819 B
3 years ago
|
using Jellyfin.Data.Entities;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||
|
|
||
|
namespace Jellyfin.Server.Implementations.ModelConfiguration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// FluentAPI configuration for the DisplayPreferencesConfiguration entity.
|
||
|
/// </summary>
|
||
|
public class DisplayPreferencesConfiguration : IEntityTypeConfiguration<DisplayPreferences>
|
||
|
{
|
||
|
/// <inheritdoc/>
|
||
|
public void Configure(EntityTypeBuilder<DisplayPreferences> builder)
|
||
|
{
|
||
|
builder
|
||
|
.HasMany(d => d.HomeSections)
|
||
|
.WithOne()
|
||
|
.OnDelete(DeleteBehavior.Cascade);
|
||
|
|
||
|
builder
|
||
|
.HasIndex(entity => new { entity.UserId, entity.ItemId, entity.Client })
|
||
|
.IsUnique();
|
||
|
}
|
||
|
}
|
||
|
}
|