- 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>
4 lines
282 B
SQL
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;
|