ref: project structure
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user