mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 14:16:47 -04:00
20 lines
320 B
SQL
20 lines
320 B
SQL
-- +goose Up
|
|
CREATE TABLE rankings (
|
|
teamid INTEGER PRIMARY KEY,
|
|
rank int,
|
|
qualificationscore int,
|
|
assistpoints int,
|
|
autopoints int,
|
|
trusscatchpoints int,
|
|
goalfoulpoints int,
|
|
random REAL,
|
|
wins int,
|
|
losses int,
|
|
ties int,
|
|
disqualifications int,
|
|
played int
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE rankings;
|