mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 06:06:47 -04:00
14 lines
287 B
SQL
14 lines
287 B
SQL
-- +goose Up
|
|
CREATE TABLE event_settings (
|
|
id INTEGER PRIMARY KEY,
|
|
name VARCHAR(255),
|
|
code VARCHAR(16),
|
|
displaybackgroundcolor VARCHAR(16),
|
|
numelimalliances int,
|
|
selectionround2order VARCHAR(1),
|
|
selectionround3order VARCHAR(1)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE event_settings;
|