This commit is contained in:
Hankin 2025-03-07 18:19:59 +08:00
parent 9a94c8d2c3
commit ff2b4ba689

View File

@ -2,8 +2,8 @@ CREATE TABLE `ufutx_dynamic_status`(
`id` INT NOT NULL AUTO_INCREMENT , `id` INT NOT NULL AUTO_INCREMENT ,
`user_id` INT NOT NULL COMMENT "用户id", `user_id` INT NOT NULL COMMENT "用户id",
`tag` VARCHAR(50) NOT NULL COMMENT "标识", `tag` VARCHAR(50) NOT NULL COMMENT "标识",
`start_time` TIMESTAMP DEFAULT NULL COMMENT "开始时间", `start_time` TIMESTAMP NULL DEFAULT NULL COMMENT "开始时间",
`end_time` TIMESTAMP DEFAULT NULL COMMENT "结束时间", `end_time` TIMESTAMP NULL DEFAULT NULL COMMENT "结束时间",
`created_at` TIMESTAMP NULL DEFAULT NULL , `created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL , `updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)