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

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