veza/veza-backend-api/migrations/936_webrtc_flag.sql
senke d577f8c9be
Some checks failed
Backend API CI / test-unit (push) Failing after 0s
Backend API CI / test-integration (push) Failing after 0s
Frontend CI / test (push) Failing after 0s
Storybook Audit / Build & audit Storybook (push) Failing after 0s
chore(release): v0.971 — Phantom (gamification removal, WebRTC Beta, limits doc)
2026-03-02 19:25:37 +01:00

4 lines
249 B
SQL

-- 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;