Files
cheesy-arena-lite/db/migrations/20180824200145_CreateScheduleBlocks.sql
2018-08-24 22:19:19 -07:00

12 lines
204 B
SQL

-- +goose Up
CREATE TABLE schedule_blocks (
id INTEGER PRIMARY KEY,
matchtype VARCHAR(16),
starttime DATETIME,
nummatches int,
matchspacingsec int
);
-- +goose Down
DROP TABLE schedule_blocks;