using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; using mws.backend.dotnet.domain.Users; namespace mws.backend.dotnet.infrastructure.Persistence.Configuration; public class UserConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder e) { e.ToTable("users"); e.HasKey(u => u.Id); e.Property(u => u.Username).HasMaxLength(100).IsRequired(); e.HasIndex(u => u.Username).IsUnique(); e.Property(u => u.PasswordHash).HasMaxLength(200).IsRequired(); e.Property(u => u.DisplayName).HasMaxLength(150).IsRequired(); } }