feat: add Member/FamilyUnit DbSets, audit interceptor registration, EF migration

Registers AuditSaveChangesInterceptor in DI and wires it into AppDbContext.
Adds Members and FamilyUnits DbSets with full column/index configuration and
applies the AddMemberAndFamilyUnit migration to the ChurchCRM database.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-05-27 13:52:58 -07:00
parent cd5413125d
commit 34344cbf83
5 changed files with 938 additions and 12 deletions
@@ -231,6 +231,10 @@ namespace ROLAC.API.Migrations
b.HasKey("Id");
b.HasIndex("MemberId")
.IsUnique()
.HasFilter("\"MemberId\" IS NOT NULL");
b.HasIndex("NormalizedEmail")
.HasDatabaseName("EmailIndex");
@@ -241,6 +245,189 @@ namespace ROLAC.API.Migrations
b.ToTable("AspNetUsers", (string)null);
});
modelBuilder.Entity("ROLAC.API.Entities.FamilyUnit", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<DateTimeOffset>("CreatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("CreatedBy")
.IsRequired()
.HasColumnType("text");
b.Property<string>("FamilyName_en")
.HasMaxLength(200)
.HasColumnType("character varying(200)");
b.Property<string>("FamilyName_zh")
.HasMaxLength(200)
.HasColumnType("character varying(200)");
b.Property<string>("Notes")
.HasColumnType("text");
b.Property<DateTimeOffset>("UpdatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("UpdatedBy")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("FamilyUnits");
});
modelBuilder.Entity("ROLAC.API.Entities.Member", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("Address")
.HasMaxLength(500)
.HasColumnType("character varying(500)");
b.Property<string>("BaptismChurch")
.HasMaxLength(200)
.HasColumnType("character varying(200)");
b.Property<DateOnly?>("BaptismDate")
.HasColumnType("date");
b.Property<string>("City")
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("Country")
.IsRequired()
.ValueGeneratedOnAdd()
.HasMaxLength(100)
.HasColumnType("character varying(100)")
.HasDefaultValue("USA");
b.Property<DateTimeOffset>("CreatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("CreatedBy")
.IsRequired()
.HasMaxLength(450)
.HasColumnType("character varying(450)");
b.Property<DateOnly?>("DateOfBirth")
.HasColumnType("date");
b.Property<DateTimeOffset?>("DeletedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("DeletedBy")
.HasMaxLength(450)
.HasColumnType("character varying(450)");
b.Property<string>("Email")
.HasMaxLength(200)
.HasColumnType("character varying(200)");
b.Property<int?>("FamilyUnitId")
.HasColumnType("integer");
b.Property<string>("FirstName_en")
.IsRequired()
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("FirstName_zh")
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("Gender")
.HasMaxLength(10)
.HasColumnType("character varying(10)");
b.Property<bool>("IsDeleted")
.HasColumnType("boolean");
b.Property<DateOnly?>("JoinDate")
.HasColumnType("date");
b.Property<string>("LanguagePreference")
.IsRequired()
.ValueGeneratedOnAdd()
.HasMaxLength(10)
.HasColumnType("character varying(10)")
.HasDefaultValue("en");
b.Property<string>("LastName_en")
.IsRequired()
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("LastName_zh")
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("NickName")
.HasMaxLength(100)
.HasColumnType("character varying(100)");
b.Property<string>("Notes")
.HasColumnType("text");
b.Property<string>("PhoneCell")
.HasMaxLength(30)
.HasColumnType("character varying(30)");
b.Property<string>("PhoneHome")
.HasMaxLength(30)
.HasColumnType("character varying(30)");
b.Property<string>("PhotoBlobPath")
.HasMaxLength(500)
.HasColumnType("character varying(500)");
b.Property<string>("State")
.HasMaxLength(50)
.HasColumnType("character varying(50)");
b.Property<string>("Status")
.IsRequired()
.ValueGeneratedOnAdd()
.HasMaxLength(20)
.HasColumnType("character varying(20)")
.HasDefaultValue("Member");
b.Property<DateTimeOffset>("UpdatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("UpdatedBy")
.IsRequired()
.HasMaxLength(450)
.HasColumnType("character varying(450)");
b.Property<string>("ZipCode")
.HasMaxLength(20)
.HasColumnType("character varying(20)");
b.HasKey("Id");
b.HasIndex("Email")
.HasFilter("\"Email\" IS NOT NULL");
b.HasIndex("FamilyUnitId");
b.HasIndex("Status")
.HasFilter("\"IsDeleted\" = false");
b.ToTable("Members");
});
modelBuilder.Entity("ROLAC.API.Entities.RefreshToken", b =>
{
b.Property<int>("Id")
@@ -341,6 +528,16 @@ namespace ROLAC.API.Migrations
.IsRequired();
});
modelBuilder.Entity("ROLAC.API.Entities.Member", b =>
{
b.HasOne("ROLAC.API.Entities.FamilyUnit", "FamilyUnit")
.WithMany()
.HasForeignKey("FamilyUnitId")
.OnDelete(DeleteBehavior.SetNull);
b.Navigation("FamilyUnit");
});
modelBuilder.Entity("ROLAC.API.Entities.RefreshToken", b =>
{
b.HasOne("ROLAC.API.Entities.AppUser", "User")