diff --git a/sql/gamedb.sql b/sql/gamedb.sql index c312524e..76445206 100644 --- a/sql/gamedb.sql +++ b/sql/gamedb.sql @@ -2153,6 +2153,7 @@ CREATE TABLE `t_hashrate_shop_buy_record` ( `item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', `this_day_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '今日购买次数', `this_week_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '本周购买次数', + `this_month_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '本月购买次数', `total_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '总购买次数', `last_buy_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次购买时间', `createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间', diff --git a/sql/gamedb2006_migrate_241001_01.sql b/sql/gamedb2006_migrate_241001_01.sql index 51a84ac9..9fffb4f0 100644 --- a/sql/gamedb2006_migrate_241001_01.sql +++ b/sql/gamedb2006_migrate_241001_01.sql @@ -21,6 +21,7 @@ CREATE TABLE `t_hashrate_shop_buy_record` ( `item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id', `this_day_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '今日购买次数', `this_week_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '本周购买次数', + `this_month_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '本月购买次数', `total_buy_times` int(11) NOT NULL DEFAULT '0' COMMENT '总购买次数', `last_buy_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次购买时间', `createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',