veza/veza-backend-api/migrations/936_webrtc_flag.sql

5 lines
249 B
MySQL
Raw Normal View History

-- v0.971: WEBRTC_CALLS feature flag (Beta, works best on same network)
INSERT INTO feature_flags (name, enabled, description) VALUES
('WEBRTC_CALLS', true, 'WebRTC audio calls — Beta, works best on same network')
ON CONFLICT (name) DO NOTHING;