From 32ed4e9b0d0a80d0702b057dac7aa2c7d072b4fa Mon Sep 17 00:00:00 2001 From: songliang Date: Wed, 12 Jul 2023 22:02:23 +0800 Subject: [PATCH] ... --- sql/gamedb.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sql/gamedb.sql b/sql/gamedb.sql index c2cc084b..c9d2f20e 100644 --- a/sql/gamedb.sql +++ b/sql/gamedb.sql @@ -1228,8 +1228,11 @@ CREATE TABLE `t_shop_dailyselection` ( `count_4` tinyint(4) NOT NULL, `count_5` tinyint(4) NOT NULL, `count_6` tinyint(4) NOT NULL, - PRIMARY KEY (`idx`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; + PRIMARY KEY (`idx`) USING BTREE, + KEY `refresh_time` (`refresh_time`) USING BTREE, + KEY `address` (`address`) USING HASH, + KEY `refresh_mode` (`refresh_mode`) USING HASH +) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `t_shop_free_record`;