Files
zyt/server/sql/add_call_recording_fields.sql
T
2026-05-11 17:49:38 +08:00

5 lines
380 B
SQL
Executable File
Raw 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.
-- 诊单视频通话云端录制字段(表前缀与 config database.prefix 一致,默认 zyt_
ALTER TABLE `zyt_tcm_call_record`
ADD COLUMN `recording_urls` text NULL COMMENT '云端录制播放地址 JSON 数组' AFTER `room_id`,
ADD COLUMN `recording_status` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '0无 1录制中 2已完成 3失败' AFTER `recording_urls`;