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

34 lines
833 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),
habdockingthreshold int
2014-05-24 17:58:57 -07:00
);
-- +goose Down
DROP TABLE event_settings;