Files
cheesy-arena-lite/db/migrations/20140526225924_CreateRankings.sql

20 lines
320 B
MySQL
Raw Normal View History

2014-05-26 23:26:30 -07:00
-- +goose Up
CREATE TABLE rankings (
teamid INTEGER PRIMARY KEY,
2014-05-31 00:40:23 -07:00
rank int,
2014-05-26 23:26:30 -07:00
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;