This commit is contained in:
aozhiwei 2024-08-16 16:30:44 +08:00
parent 1b36cdbcee
commit 217b8451f5

View File

@ -2024,6 +2024,8 @@ DROP TABLE IF EXISTS `t_contribution_history`;
CREATE TABLE `t_contribution_history` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id(channel + "_" + gameid + "_" + openid)',
`controller` varchar(60) NOT NULL DEFAULT '' COMMENT 'controller',
`action` varchar(60) NOT NULL DEFAULT '' COMMENT 'action',
`consume_gold` double NOT NULL DEFAULT '0' COMMENT '消费金币数',
`contribution` double NOT NULL DEFAULT '0' COMMENT '获得点数',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',