19 lines
653 B
C#
19 lines
653 B
C#
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<User>
|
|
{
|
|
public void Configure(EntityTypeBuilder<User> 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();
|
|
}
|
|
}
|