From bb3894d6f123663c15bdf245bfc68a3e168de1b7 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 9 Dec 2025 16:53:27 -0600 Subject: [PATCH] Add salary_cap field to Team model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- api_calls/team.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api_calls/team.py b/api_calls/team.py index 1c1dff6..da4c61e 100644 --- a/api_calls/team.py +++ b/api_calls/team.py @@ -22,4 +22,5 @@ class Team(pydantic.BaseModel): thumbnail: Optional[str] = None color: Optional[str] = None dice_color: Optional[str] = None - season: int \ No newline at end of file + season: int + salary_cap: Optional[float] = None \ No newline at end of file