Merge branch 'master' into 1078

This commit is contained in:
648540858
2024-04-08 18:15:06 +08:00
8 changed files with 46 additions and 12 deletions

View File

@@ -198,6 +198,7 @@ create table wvp_platform (
update_time character varying(50),
as_message_channel bool default false,
auto_push_channel bool default false,
send_stream_ip character varying(50),
constraint uk_platform_unique_server_gb_id unique (server_gb_id)
);

View File

@@ -198,6 +198,7 @@ create table wvp_platform (
update_time character varying(50),
as_message_channel bool default false,
auto_push_channel bool default false,
send_stream_ip character varying(50),
constraint uk_platform_unique_server_gb_id unique (server_gb_id)
);

View File

@@ -2,4 +2,7 @@ alter table wvp_device_channel
add stream_identification character varying(50);
alter table wvp_device
drop switch_primary_sub_stream;
drop switch_primary_sub_stream;
alter table wvp_platform
add send_stream_ip character varying(50);

View File

@@ -2,4 +2,7 @@ alter table wvp_device_channel
add stream_identification character varying(50);
alter table wvp_device
drop switch_primary_sub_stream;
drop switch_primary_sub_stream;
alter table wvp_platform
add send_stream_ip character varying(50);