14 lines
427 B
C#
14 lines
427 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations
|
|
{
|
|
public class ConfigElementConfiguration : IEntityTypeConfiguration<ConfigElement>
|
|
{
|
|
public void Configure(EntityTypeBuilder<ConfigElement> builder) =>
|
|
builder.HasIndex(ce => ce.Key)
|
|
.IsUnique();
|
|
}
|
|
}
|