brackt/drizzle/0027_add_projected_points_to_team_standings.sql
Chris Parsons 7970cb6a9c feat: add FIFA World Cup 48-team bracket template with group stage and projected scoring
- Add FIFA_48 bracket template with 12 groups of 4, knockout stage of 32
- Add tournament groups schema, model, and GroupStageDisplay component
- Add projected/expected value scoring to standings and team breakdowns
- Add docker-compose for local PostgreSQL development
- Move DRAFT_ORDER_IMPLEMENTATION.md to plans directory

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 22:30:12 -08:00

4 lines
282 B
SQL

-- Phase 5.4: Add projected points tracking to team_standings
ALTER TABLE "team_standings" ADD COLUMN "actual_points" numeric(10, 2);
ALTER TABLE "team_standings" ADD COLUMN "projected_points" numeric(10, 2);
ALTER TABLE "team_standings" ADD COLUMN "participants_finished" integer;