This commit is contained in:
songliang 2023-07-13 14:05:15 +08:00
parent cb9e72345e
commit c9034e01ae

View File

@ -1228,10 +1228,10 @@ 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,
KEY `refresh_time` (`refresh_time`) USING BTREE,
KEY `address` (`address`) USING HASH,
KEY `refresh_mode` (`refresh_mode`) USING HASH
PRIMARY KEY (`idx`),
KEY `refresh_time` (`refresh_time`),
KEY `address` (`address`),
KEY `refresh_mode` (`refresh_mode`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@ -1247,10 +1247,10 @@ CREATE TABLE `t_shop_free_record` (
`free_num` int(11) NOT NULL COMMENT '免费数量',
`createtime` int(11) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`idx`),
KEY `account_id` (`account_id`) USING HASH,
KEY `createtime` (`createtime`) USING BTREE,
KEY `id` (`id`) USING BTREE,
KEY `goods_id` (`goods_id`) USING BTREE
KEY `account_id` (`account_id`),
KEY `createtime` (`createtime`),
KEY `id` (`id`),
KEY `goods_id` (`goods_id`)
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8;