mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
10 lines
144 B
SQL
10 lines
144 B
SQL
-- +goose Up
|
|
CREATE TABLE rankings (
|
|
teamid INTEGER PRIMARY KEY,
|
|
rank int,
|
|
rankingfieldsjson text
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE rankings;
|