Server-settings row that gates the absorbed audiobooks feature. Defaults to 'false' so sub-plan 1 lands as a strict no-op; subsequent sub-plans branch on this flag and operators flip it to 'true' at cutover. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
7 lines
290 B
SQL
7 lines
290 B
SQL
-- Master kill-switch for the absorbed audiobooks feature. Defaults to
|
|
-- 'false' so landing migrations 139-142 is a no-op for users; operators
|
|
-- flip this to 'true' at cutover.
|
|
|
|
INSERT INTO server_settings (key, value) VALUES ('audiobooks.enabled', 'false')
|
|
ON CONFLICT (key) DO NOTHING;
|