25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
using static PostFundManagement.Domain.Extensions.Constants;
|
|
|
|
namespace PostFundManagement.Domain.Configuration.Entities;
|
|
|
|
public sealed class AuditLog : IEntityTypeConfiguration<Domain.Entities.AuditLog>
|
|
{
|
|
public void Configure(EntityTypeBuilder<Domain.Entities.AuditLog> builder)
|
|
{
|
|
builder.ToTable(nameof(Domain.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);
|
|
}
|
|
} |