2022-06-27 10:16:21 +08:00
|
|
|
alter table parent_platform
|
|
|
|
add startOfflinePush int default 0 null;
|
|
|
|
|
|
|
|
alter table parent_platform
|
|
|
|
add administrativeDivision varchar(50) not null;
|
|
|
|
|
|
|
|
alter table parent_platform
|
|
|
|
add catalogGroup int default 1 null;
|
|
|
|
|
2022-04-01 16:45:29 +08:00
|
|
|
alter table device
|
2022-05-07 09:52:02 +08:00
|
|
|
add audioChannelForReceive VARCHAR(50) null;
|
2022-04-18 10:52:38 +08:00
|
|
|
|
2022-05-07 09:52:02 +08:00
|
|
|
alter table device
|
2022-06-27 10:16:21 +08:00
|
|
|
add audioChannelForSend VARCHAR(50) null;
|
|
|
|
|
2022-06-14 14:37:34 +08:00
|
|
|
alter table stream_push
|
|
|
|
add serverId varchar(50) not null;
|
2022-06-14 17:00:24 +08:00
|
|
|
alter table device
|
|
|
|
add geoCoordSys varchar(50) not null;
|
|
|
|
update device set device.geoCoordSys='WGS84';
|
|
|
|
alter table device_channel
|
|
|
|
add longitudeGcj02 double default null;
|
|
|
|
alter table device_channel
|
|
|
|
add latitudeGcj02 double default null;
|
|
|
|
alter table device_channel
|
|
|
|
add longitudeWgs84 double default null;
|
|
|
|
alter table device_channel
|
|
|
|
add latitudeWgs84 double default null;
|
|
|
|
|