mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
31 lines
795 B
SQL
31 lines
795 B
SQL
-- +goose Up
|
|
CREATE TABLE event_settings (
|
|
id INTEGER PRIMARY KEY,
|
|
name VARCHAR(255),
|
|
displaybackgroundcolor VARCHAR(16),
|
|
numelimalliances int,
|
|
selectionround2order VARCHAR(1),
|
|
selectionround3order VARCHAR(1),
|
|
teaminfodownloadenabled bool,
|
|
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),
|
|
switchpassword VARCHAR(255),
|
|
bandwidthmonitoringenabled bool,
|
|
plcaddress VARCHAR(255),
|
|
tbadownloadenabled bool,
|
|
adminpassword VARCHAR(255),
|
|
readerpassword VARCHAR(255),
|
|
stemtvpublishingenabled bool,
|
|
stemtveventcode VARCHAR(16)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE event_settings;
|