feat: add tournamentType field to Event model

Add tournamentType field with default value 'individual':
- Supports 'individual' and 'team' tournament types
- Creates migration for database schema update
This commit is contained in:
2026-04-03 19:27:58 -07:00
parent e086d7398a
commit 1d830ee8a3
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "events" ADD COLUMN "tournamentType" TEXT NOT NULL DEFAULT 'individual';