mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-10 16:04:04 +00:00
9 lines
302 B
SQL
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;
|