- Address field on member table (jsonb, same format as account) - Members inherit email, phone, address from account when not provided - State normalization: "Texas" → "TX", "california" → "CA" via shared util - Member form drops zodResolver to fix optional field validation flashing - Account name auto-format: "First Last - Account" - US state lookup with full name + code support
3 lines
80 B
SQL
3 lines
80 B
SQL
-- Add address to member table
|
|
ALTER TABLE "member" ADD COLUMN "address" jsonb;
|