From 6817f65e569dcbdcd0b83f6a94aff224ac3804a2 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Wed, 25 Mar 2026 04:09:54 +0100 Subject: [PATCH] docs: update instance_settings schema in CLAUDE.md (add missing columns + allow_custom_bitrate) --- CLAUDE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 050c2e36..af6dd7fb 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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 );