更新-mysql-2.7.2.sql 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. alter table wvp_device_channel
  2. drop column custom_name;
  3. alter table wvp_device_channel
  4. drop column channel_id;
  5. alter table wvp_device_channel
  6. drop column custom_longitude;
  7. alter table wvp_device_channel
  8. drop column custom_latitude;
  9. alter table wvp_device_channel
  10. drop column custom_ptz_type;
  11. alter table wvp_device_channel
  12. drop column longitude_gcj02;
  13. alter table wvp_device_channel
  14. drop column latitude_gcj02;
  15. alter table wvp_device_channel
  16. drop column longitude_wgs84;
  17. alter table wvp_device_channel
  18. drop column latitude_wgs84;
  19. alter table wvp_device_channel
  20. rename column manufacture to manufacturer;
  21. alter table wvp_device_channel
  22. modify column parental integer;
  23. alter table wvp_device_channel
  24. modify column secrecy integer;
  25. alter table wvp_device_channel
  26. modify column status character varying(50);
  27. alter table wvp_device_channel
  28. modify column device_id character varying(50);
  29. alter table wvp_device_channel
  30. add position_type integer;
  31. alter table wvp_device_channel
  32. add room_type integer;
  33. alter table wvp_device_channel
  34. add use_type integer;
  35. alter table wvp_device_channel
  36. add supply_light_type integer;
  37. alter table wvp_device_channel
  38. add direction_type integer;
  39. alter table wvp_device_channel
  40. add resolution character varying(255);
  41. alter table wvp_device_channel
  42. modify column business_group_id character varying(255);
  43. alter table wvp_device_channel
  44. add download_speed character varying(255);
  45. alter table wvp_device_channel
  46. add svc_space_support_mod integer;
  47. alter table wvp_device_channel
  48. add svc_time_support_mode integer;
  49. alter table wvp_device_channel
  50. add device_db_id integer;