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

11 lines
164 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,
previousrank int,
rankingfieldsjson text
2014-05-26 23:26:30 -07:00
);
-- +goose Down
DROP TABLE rankings;