Files
sub2api/backend/migrations/204_channel_monitor_hide_throughput.sql
T

6 lines
263 B
SQL
Raw Normal View History

-- Soft switch: hide RPM/TPM throughput rates on user-facing Channel Monitor V2.
-- Default false (rates visible). Admins always see full metrics.
INSERT INTO settings (key, value)
VALUES ('channel_monitor_hide_throughput', 'false')
ON CONFLICT (key) DO NOTHING;