mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
12 lines
204 B
MySQL
12 lines
204 B
MySQL
|
|
-- +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;
|