|
@@ -1,27 +1,27 @@
|
|
|
alter table wvp_device_channel
|
|
alter table wvp_device_channel
|
|
|
- change stream_id stream_id varying(255)
|
|
|
|
|
|
|
+ rename "stream_id" to stream_id ;
|
|
|
|
|
|
|
|
alter table wvp_platform
|
|
alter table wvp_platform
|
|
|
- add auto_push_channel bool default false
|
|
|
|
|
|
|
+ add auto_push_channel bool default false;
|
|
|
|
|
|
|
|
alter table wvp_stream_proxy
|
|
alter table wvp_stream_proxy
|
|
|
- add stream_key character varying(255)
|
|
|
|
|
|
|
+ add stream_key character varying(255);
|
|
|
|
|
|
|
|
create table wvp_cloud_record (
|
|
create table wvp_cloud_record (
|
|
|
id serial primary key,
|
|
id serial primary key,
|
|
|
app character varying(255),
|
|
app character varying(255),
|
|
|
stream character varying(255),
|
|
stream character varying(255),
|
|
|
call_id character varying(255),
|
|
call_id character varying(255),
|
|
|
- start_time integer,
|
|
|
|
|
- end_time integer,
|
|
|
|
|
|
|
+ start_time int8,
|
|
|
|
|
+ end_time int8,
|
|
|
media_server_id character varying(50),
|
|
media_server_id character varying(50),
|
|
|
file_name character varying(255),
|
|
file_name character varying(255),
|
|
|
folder character varying(255),
|
|
folder character varying(255),
|
|
|
file_path character varying(255),
|
|
file_path character varying(255),
|
|
|
collect bool default false,
|
|
collect bool default false,
|
|
|
reserve bool default false,
|
|
reserve bool default false,
|
|
|
- file_size integer,
|
|
|
|
|
- time_len integer,
|
|
|
|
|
|
|
+ file_size int8,
|
|
|
|
|
+ time_len int8,
|
|
|
constraint uk_stream_push_app_stream_path unique (app, stream, file_path)
|
|
constraint uk_stream_push_app_stream_path unique (app, stream, file_path)
|
|
|
);
|
|
);
|
|
|
|
|
|