Problem or opportunity
Team struct in domain/src/team.rs uses stadium_name: String and stadium_capacity: u32. League of Legends teams compete in arenas, not stadiums.
Proposed solution
- Add �rena_name: String and �rena_capacity: u32 to Team.
- Add #[serde(alias = "stadium_name")] and #[serde(alias = "stadium_capacity")].
- SQL migration (v033) adds new columns and copies data from old columns.
- Keep old columns during transition; remove in future migration.
UX impact
- Team profile screen shows "Arena" instead of "Stadium".
- World editor fields updated.
Acceptance criteria
Scope
Data / provenance
Problem or opportunity
Team struct in domain/src/team.rs uses stadium_name: String and stadium_capacity: u32. League of Legends teams compete in arenas, not stadiums.
Proposed solution
UX impact
Acceptance criteria
Scope
Data / provenance