DATA-2: amendments — GerbilStatus.ForSale, Contact structured fields, 73-variety seed

- GerbilStatus += ForSale ("Abzugeben", FEAT-12 sale listing); enum-as-string, no DB change.
- Contact: contactInfo -> structured email/phone/address (FEAT-13 sale contracts); name/notes kept.
- ColorVariety seed 18 -> 73 from Kevin's GEN-2 colorVarietySeed.generated.json (18 frozen first).
- Regenerated InitialCreate migration (Contacts email/phone/address cols, 73 seed rows).
This commit is contained in:
2026-06-06 01:07:19 +02:00
parent f3b1ecb7a3
commit 188b33618e
9 changed files with 1429 additions and 529 deletions

View File

@@ -5,6 +5,8 @@ namespace GerbilManagerWebAPI.Models
{
Active = 0,
Deceased = 1,
GivenAway = 2
GivenAway = 2,
/// <summary>Alive, at home, offered for Abgabe ("Abzugeben"). Drives FEAT-12 sale listing.</summary>
ForSale = 3
}
}