usky-park.sql 780 B

123456789101112131415
  1. #5月15日
  2. alter table data_ev_history add index index_data(device_id,attribute_name,data_time);
  3. alter table data_gr_history add index index_data(device_id,attribute_name,data_time);
  4. alter table data_lg_history add index index_data(device_id,attribute_name,data_time);
  5. alter table data_lg_history add index index_data1(attribute_name,data_time,attribute_data);
  6. #5月18日
  7. CREATE TABLE `eg_config` (
  8. `id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
  9. `in_deviceids` TEXT NOT NULL COMMENT '进入统计设备ID汇总',
  10. `out_deviceids` TEXT NOT NULL COMMENT '出去统计设备ID汇总',
  11. `config_time` DATETIME DEFAULT NULL COMMENT '配置时间',
  12. PRIMARY KEY (`id`)
  13. ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='门禁进出统计配置设备表';