Spaces:
Running
Running
File size: 296 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 |
-- Adds `rated` and `timer` cols to the Postgres `stored_battles` table.
-- Also adds a version tracker
-- Battle rating
ALTER TABLE stored_battles ADD COLUMN rated INTEGER NOT NULL;
-- JSON blob of timer settings, deserialized on load
ALTER TABLE stored_battles ADD COLUMN timer JSON NOT NULL;
|