添加sql字段
This commit is contained in:
parent
0325efd84c
commit
b0094a5755
@ -58,6 +58,10 @@ alter table device
|
|||||||
alter table device
|
alter table device
|
||||||
change online on_line varchar(50) null;
|
change online on_line varchar(50) null;
|
||||||
|
|
||||||
|
alter table device
|
||||||
|
add COLUMN switch_primary_sub_stream bool default false comment '开启主子码流切换的开关(0-不开启,1-开启)现在已知支持设备为 大华、TP——LINK全系设备'
|
||||||
|
|
||||||
|
|
||||||
alter table device_alarm
|
alter table device_alarm
|
||||||
change deviceId device_id varchar(50) not null;
|
change deviceId device_id varchar(50) not null;
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ create table wvp_device (
|
|||||||
password character varying(255),
|
password character varying(255),
|
||||||
as_message_channel bool default false,
|
as_message_channel bool default false,
|
||||||
keepalive_interval_time integer,
|
keepalive_interval_time integer,
|
||||||
|
switch_primary_sub_stream bool default false,
|
||||||
constraint uk_device_device unique (device_id)
|
constraint uk_device_device unique (device_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user