docs: update instance_settings schema in CLAUDE.md (add missing columns + allow_custom_bitrate)

This commit is contained in:
Jannis Braun
2026-03-25 04:09:54 +01:00
parent f0104d19b7
commit 6817f65e56
+3
View File
@@ -548,6 +548,9 @@ CREATE TABLE instance_settings (
max_resolution INTEGER NOT NULL DEFAULT 1080,
max_framerate INTEGER NOT NULL DEFAULT 60,
registration_open INTEGER, -- explicit registration override (null = use env)
gif_api_key TEXT, -- API key for GIF provider
bitrate_matrix_overrides TEXT, -- JSON: sparse {res_fps: kbps} overrides
allow_custom_bitrate INTEGER NOT NULL DEFAULT 1, -- toggle for user custom bitrate slider
max_upload_size_bytes INTEGER, -- admin-configurable upload limit (null = use env var)
updated_at INTEGER NOT NULL
);