This commit is contained in:
songliang 2023-07-12 21:56:40 +08:00
parent f41ee6e04a
commit 53c3715a96

View File

@ -38,8 +38,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=21 DEFAULT CHARSET=utf8;
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;
CREATE TABLE `t_shop_free_record` (
`idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id',