Files
CosmicClash/server/migrations/0008_match_arena_paths.sql
T
2026-09-01 21:04:55 +01:00

9 lines
302 B
SQL

-- Persist the matcher-selected arena through acceptance and allocation. NULL
-- remains valid for legacy/casual rows while ranked proposals always write a
-- server-owned floor-goal path.
ALTER TABLE proposals
ADD COLUMN match_arena_path TEXT;
ALTER TABLE matches
ADD COLUMN arena_path TEXT;