Files
cheesy-arena-lite/db/migrations/20180824200145_CreateScheduleBlocks.sql

12 lines
204 B
MySQL
Raw Normal View History

2018-08-24 20:51:37 -07:00
-- +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;