From 217b8451f545289804c9fded4cdd2982d5e5c1b4 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 16 Aug 2024 16:30:44 +0800 Subject: [PATCH] 1 --- sql/gamedb.sql | 2 ++ 1 file changed, 2 insertions(+) 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 '创建时间',