This commit is contained in:
songliang 2023-07-12 22:02:23 +08:00
parent 53c3715a96
commit 32ed4e9b0d

View File

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