Add salary_cap field to Team model

Syncs with database schema change - new nullable float column for tracking team salary caps.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2025-12-09 16:53:27 -06:00
parent 4e71c33344
commit bb3894d6f1

View File

@ -23,3 +23,4 @@ class Team(pydantic.BaseModel):
color: Optional[str] = None
dice_color: Optional[str] = None
season: int
salary_cap: Optional[float] = None