-- Migration: Add salary_cap column to teams table -- Date: 2025-12-09 -- Description: Adds optional salary_cap column to track team salary cap values ALTER TABLE team ADD COLUMN IF NOT EXISTS salary_cap REAL; -- Note: REAL is PostgreSQL's single-precision floating-point type -- Column is nullable (no NOT NULL constraint) so existing rows get NULL