648540858
2024-05-29 764d04b497356ba6bcbb75fd42b51eca750f7223
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
alter table wvp_device_channel
    add stream_identification character varying(50);
 
alter table wvp_device
    drop switch_primary_sub_stream;
 
# 第一个补丁包
alter table wvp_platform
    add send_stream_ip character varying(50);
 
alter table wvp_device
    change on_line on_line bool default false;
 
alter table wvp_device
    change id id serial primary key;
 
alter table wvp_device
    change ssrc_check ssrc_check bool default false;