Files
cheesy-arena-lite/db/migrations/20140524160241_CreateEventSettings.sql

41 lines
1004 B
MySQL
Raw Normal View History

2014-05-24 17:58:57 -07:00
-- +goose Up
CREATE TABLE event_settings (
id INTEGER PRIMARY KEY,
name VARCHAR(255),
2014-06-06 21:26:55 -07:00
numelimalliances int,
selectionround2order VARCHAR(1),
2014-07-30 00:16:09 -07:00
selectionround3order VARCHAR(1),
teaminfodownloadenabled bool,
2014-07-30 00:16:09 -07:00
tbapublishingenabled bool,
tbaeventcode VARCHAR(16),
tbasecretid VARCHAR(255),
tbasecret VARCHAR(255),
networksecurityenabled bool,
apaddress VARCHAR(255),
apusername VARCHAR(255),
appassword VARCHAR(255),
apteamchannel int,
apadminchannel int,
apadminwpakey VARCHAR(255),
ap2address VARCHAR(255),
ap2username VARCHAR(255),
ap2password VARCHAR(255),
ap2teamchannel int,
switchaddress VARCHAR(255),
2015-06-20 23:54:14 -07:00
switchpassword VARCHAR(255),
plcaddress VARCHAR(255),
2015-08-22 23:33:38 -07:00
tbadownloadenabled bool,
adminpassword VARCHAR(255),
warmupdurationsec int,
autodurationsec int,
pausedurationsec int,
teleopdurationsec int,
2020-03-15 22:24:23 -07:00
warningremainingdurationsec int,
stage1capacity int,
stage2capacity int,
stage3capacity int
2014-05-24 17:58:57 -07:00
);
-- +goose Down
DROP TABLE event_settings;