mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
13 lines
386 B
MySQL
13 lines
386 B
MySQL
|
|
-- +goose Up
|
||
|
|
-- +goose StatementBegin
|
||
|
|
ALTER TABLE event_settings ADD durationauto int;
|
||
|
|
ALTER TABLE event_settings ADD durationteleop int;
|
||
|
|
UPDATE event_settings SET durationauto = 15, durationteleop = 135;
|
||
|
|
-- +goose StatementEnd
|
||
|
|
|
||
|
|
-- +goose Down
|
||
|
|
-- +goose StatementBegin
|
||
|
|
ALTER TABLE event_settings DROP durationauto;
|
||
|
|
ALTER TABLE event_settings DROP durationteleop;
|
||
|
|
-- +goose StatementEnd
|