9 lines
504 B
MySQL
9 lines
504 B
MySQL
|
|
-- Mission Control: single camera feed settings
|
||
|
|
|
||
|
|
INSERT INTO settings (key, value, category, description, value_type, is_public)
|
||
|
|
VALUES
|
||
|
|
('mission_camera_enabled', 'false', 'mission', 'Enable one camera feed in Mission Control', 'boolean', true),
|
||
|
|
('mission_camera_name', 'Mission Kamera', 'mission', 'Display name for Mission Control camera feed', 'string', true),
|
||
|
|
('mission_camera_feed_url', '', 'mission', 'Feed URL for Mission Control camera', 'string', true)
|
||
|
|
ON CONFLICT (key) DO NOTHING;
|