Implemented ranking calculation.

This commit is contained in:
Patrick Fairbank
2014-05-31 03:54:46 -07:00
parent 0ebd69f8e7
commit ec0287eecd
3 changed files with 302 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ CREATE TABLE match_results (
bluefoulsjson text,
cardsjson text
);
CREATE UNIQUE INDEX matchid_playnumber ON match_results(matchid, playnumber);
-- +goose Down
DROP TABLE match_results;