This commit is contained in:
777
2025-09-11 15:23:21 +08:00
parent dca61c12cf
commit 8c98c6928c

View File

@@ -12,7 +12,7 @@ CREATE TABLE `cai_anchor_im_count_day`
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL COMMENT '用户ID',
`count_date` date NOT NULL COMMENT '时间',
`im_count` bigint(20) NOT NULL COMMENT '数量',
`im_count` bigint(20) NOT NULL DEFAULT 0 COMMENT '数量',
`refresh_time` datetime not null default now() comment '刷新时间',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,