mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
15 lines
249 B
SQL
15 lines
249 B
SQL
-- +goose Up
|
|
CREATE TABLE match_results (
|
|
id INTEGER PRIMARY KEY,
|
|
matchid int,
|
|
playnumber int,
|
|
redscorejson text,
|
|
bluescorejson text,
|
|
redfoulsjson text,
|
|
bluefoulsjson text,
|
|
cardsjson text
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE match_results;
|