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`;