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

31 lines
800 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
code VARCHAR(16),
displaybackgroundcolor VARCHAR(16),
numelimalliances int,
selectionround2order VARCHAR(1),
2014-07-30 00:16:09 -07:00
selectionround3order VARCHAR(1),
teaminfodownloadenabled bool,
2014-08-23 21:42:23 -07:00
redgoallightsaddress VARCHAR(255),
bluegoallightsaddress VARCHAR(255),
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),
switchaddress VARCHAR(255),
2015-06-20 23:54:14 -07:00
switchpassword VARCHAR(255),
2015-08-22 23:33:38 -07:00
bandwidthmonitoringenabled bool,
tbadownloadenabled bool,
adminpassword VARCHAR(255),
readerpassword VARCHAR(255)
2014-05-24 17:58:57 -07:00
);
-- +goose Down
DROP TABLE event_settings;