【火灾识别】 数据库凸包表的创建

drop table fire_hull_detect;
CREATE TABLE `fire_table`(
    d_id varchar(10) not null primary key ,
    path varchar(70)
    
    
);
--创建默认时间
ALTER TABLE `fire_hull_detect`
ADD COLUMN  `CreateTime` TIMESTAMP NOT NULL DEFAULT  CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间' ;

DROP TABLE fire_hull_count;
create table fire_hull_count(
    c_id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
    
    out_Hull DOUBLE,
    in_Contours DOUBLE,
    out_in DOUBLE ,
    did int ,
    

)
-- 添加外键关系。
alter table fire_hull_count add foreign key(did) references fire_hull_detect(id);
-- 更新时候情况
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',


你可能感兴趣的:(火灾识别)