daily step

This commit is contained in:
Hankin 2025-05-28 15:09:17 +08:00
parent d67d33f5f5
commit 2220924ff6

View File

@ -0,0 +1,10 @@
CREATE TABLE `ufutx_daily_step`(
`id` BIGINT NOT NULL AUTO_INCREMENT ,
`user_id` integer NOT NULL COMMENT "用户id",
`date` date NOT NULL COMMENT "日期",
`step` integer DEFAULT 0 COMMENT "步数",
`last_id` integer NOT NULL COMMENT "最后更新id",
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '每日步数';