This commit is contained in:
songliang 2023-07-13 12:06:13 +08:00
parent f2d36efec3
commit 8eb000a119

View File

@ -1336,4 +1336,9 @@ CREATE TABLE `t_market_transaction_record` (
`name` varchar(64) NOT NULL COMMENT '商品名称',
`type` int(11) NOT NULL COMMENT '商品类型',
PRIMARY KEY (`idx`)
KEY `createtime` (`createtime`) USING BTREE,
KEY `seller` (`seller`) USING HASH,
KEY `buyer` (`buyer`) USING HASH,
KEY `o_link` (`o_link`) USING HASH,
KEY `orderid` (`orderid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;