diff --git a/sql/gamedb.sql b/sql/gamedb.sql index ffd7514f..4728a13d 100644 --- a/sql/gamedb.sql +++ b/sql/gamedb.sql @@ -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 '创建时间',