mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 06:06:47 -04:00
14 lines
291 B
SQL
14 lines
291 B
SQL
-- +goose Up
|
|
CREATE TABLE match_results (
|
|
id INTEGER PRIMARY KEY,
|
|
matchid int,
|
|
playnumber int,
|
|
matchtype VARCHAR(16),
|
|
redscorejson text,
|
|
bluescorejson text
|
|
);
|
|
CREATE UNIQUE INDEX matchid_playnumber ON match_results(matchid, playnumber);
|
|
|
|
-- +goose Down
|
|
DROP TABLE match_results;
|