增加会员总收入和今日收入展示字段,及邀请码字段

This commit is contained in:
2024-11-08 17:53:15 +08:00
parent 52c45d913a
commit 3d2ab0d77c
10 changed files with 673 additions and 27 deletions

View File

@@ -989,8 +989,10 @@ CREATE TABLE IF NOT EXISTS `ums_member` (
`growth` int(11) DEFAULT NULL COMMENT '成长值',
`luckey_count` int(11) DEFAULT NULL COMMENT '剩余抽奖次数',
`history_integration` int(11) DEFAULT NULL COMMENT '历史积分数量',
`invitation_code` varchar(15) DEFAULT NULL COMMENT '12位邀请码',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_username` (`username`),
UNIQUE KEY `idx_invitation_code` (`invitation_code`),
UNIQUE KEY `idx_phone` (`phone`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='会员表';