You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
399 B
Plaintext
9 lines
399 B
Plaintext
CREATE TABLE `upload_statics` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`check_type` varchar(32) NOT NULL,
|
|
`first_value` bigint DEFAULT NULL,
|
|
`upload_time` date DEFAULT NULL COMMENT '上传记录的日期',
|
|
`update_time` timestamp NULL DEFAULT NULL COMMENT '修改时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='i2上传Id的确认表';
|