This commit is contained in:
songliang 2023-07-13 12:04:17 +08:00
parent d75af04a4a
commit f2d36efec3

View File

@ -39,6 +39,11 @@ 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;
insert into version (version) values(2023071301);