aidmt-ms/sql/video_stream_detection_add_...

8 lines
450 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- ----------------------------
-- 视频流检测表增加监理复核相关字段
-- ----------------------------
ALTER TABLE `cons_video_detection`
ADD COLUMN `review_status` char(1) DEFAULT '0' COMMENT '复核状态0待复核 1合格 2不合格' AFTER `img_url`,
ADD COLUMN `review_by` varchar(64) DEFAULT NULL COMMENT '复核人' AFTER `review_status`,
ADD COLUMN `review_time` datetime DEFAULT NULL COMMENT '复核时间' AFTER `review_by`;