owpengram-server/deploy/migrations/0053_group_call_rtmp.up.sql

10 lines
408 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Live StreamRTMP 直播group_calls 增加 rtmp_stream 标记;
-- per-channel 持久 RTMP 推流密钥revoke 轮换后旧 key 立即失效)。
ALTER TABLE group_calls
ADD COLUMN IF NOT EXISTS rtmp_stream boolean DEFAULT false NOT NULL;
CREATE TABLE IF NOT EXISTS group_call_rtmp_keys (
channel_id bigint PRIMARY KEY,
stream_key text NOT NULL,
updated_at integer NOT NULL
);