using static PostFundManagement.Domain.Extensions.Constants; namespace PostFundManagement.Domain.Configuration; public sealed class AuditLog : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable(nameof(Entities.AuditLog).Pluralize()); builder.HasKey(pk => pk.Id); builder.Property(f => f.EntityName).IsRequired().HasMaxLength(LabelLength); builder.Property(f => f.EntityId).IsRequired(); builder.Property(f => f.Action).IsRequired().HasMaxLength(ShortLabelLength); builder.Property(f => f.Changes).IsRequired(false).HasColumnType("jsonb"); builder.Property(f => f.PerformedBy).IsRequired(); builder.Property(f => f.Timestamp).IsRequired().HasDefaultValueSql("now()"); builder.HasOne(f => f.Performer) .WithMany() .HasForeignKey(fk => fk.PerformedBy) .IsRequired() .OnDelete(DeleteBehavior.Restrict); } }