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