From 229550dde88745aa210034469bab6a05fac3522c Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 10 Oct 2024 15:26:43 +0800 Subject: [PATCH] 1 --- sql/gamedb.sql | 1 + sql/gamedb2006_migrate_241001_01.sql | 1 + 2 files changed, 2 insertions(+) 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 '创建时间',