mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
18 lines
305 B
SQL
18 lines
305 B
SQL
-- +goose Up
|
|
CREATE TABLE rankings (
|
|
teamid INTEGER PRIMARY KEY,
|
|
rank int,
|
|
qualificationaverage int,
|
|
coopertitionpoints int,
|
|
autopoints int,
|
|
containerpoints int,
|
|
totepoints int,
|
|
litterpoints int,
|
|
random REAL,
|
|
disqualifications int,
|
|
played int
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE rankings;
|