Update Status property mapping to STATUS_ID column

Changed the database column mapping for the Status property from "STATUS" to "STATUS_ID" to ensure correct association with the updated schema.
This commit is contained in:
2025-12-15 15:31:30 +01:00
parent 47ddde239e
commit 56fb34d987

View File

@@ -133,7 +133,7 @@ public class RecDbContext(DbContextOptions<RecDbContext> options) : DbContext(op
.ValueGeneratedOnAdd();
b.Property(e => e.ActionId).HasColumnName("ACTION_ID");
b.Property(e => e.Status).HasColumnName("STATUS");
b.Property(e => e.Status).HasColumnName("STATUS_ID");
b.Property(e => e.Header).HasColumnName("RESULT_HEADER");
b.Property(e => e.Body).HasColumnName("RESULT_BODY");
b.Property(e => e.AddedWho).HasColumnName("ADDED_WHO");