5 lines
282 B
MySQL
5 lines
282 B
MySQL
|
|
-- 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;
|