...
This commit is contained in:
parent
4b9677a275
commit
68d3f0ff45
@ -1318,12 +1318,12 @@ CREATE TABLE `t_market_store` (
|
|||||||
`c_quality` int(11) NOT NULL COMMENT '缓存-品阶',
|
`c_quality` int(11) NOT NULL COMMENT '缓存-品阶',
|
||||||
`c_durability` float NOT NULL COMMENT '缓存-能量',
|
`c_durability` float NOT NULL COMMENT '缓存-能量',
|
||||||
`c_id` int(11) NOT NULL COMMENT '缓存-id',
|
`c_id` int(11) NOT NULL COMMENT '缓存-id',
|
||||||
PRIMARY KEY (`idx`) USING BTREE,
|
PRIMARY KEY (`idx`),
|
||||||
UNIQUE KEY `idx` (`idx`) USING BTREE
|
UNIQUE KEY `idx` (`idx`)
|
||||||
KEY `o_link` (`o_link`) USING HASH,
|
KEY `o_link` (`o_link`),
|
||||||
KEY `owner_address` (`owner_address`) USING HASH,
|
KEY `owner_address` (`owner_address`),
|
||||||
KEY `token_id` (`token_id`) USING HASH,
|
KEY `token_id` (`token_id`),
|
||||||
KEY `createtime` (`createtime`) USING BTREE,
|
KEY `createtime` (`createtime`),
|
||||||
KEY `s_currency` (`s_currency`),
|
KEY `s_currency` (`s_currency`),
|
||||||
KEY `s_price` (`s_price`),
|
KEY `s_price` (`s_price`),
|
||||||
KEY `c_name` (`c_name`),
|
KEY `c_name` (`c_name`),
|
||||||
@ -1348,9 +1348,9 @@ CREATE TABLE `t_market_transaction_record` (
|
|||||||
`name` varchar(64) NOT NULL COMMENT '商品名称',
|
`name` varchar(64) NOT NULL COMMENT '商品名称',
|
||||||
`type` int(11) NOT NULL COMMENT '商品类型',
|
`type` int(11) NOT NULL COMMENT '商品类型',
|
||||||
PRIMARY KEY (`idx`)
|
PRIMARY KEY (`idx`)
|
||||||
KEY `createtime` (`createtime`) USING BTREE,
|
KEY `createtime` (`createtime`),
|
||||||
KEY `seller` (`seller`) USING HASH,
|
KEY `seller` (`seller`),
|
||||||
KEY `buyer` (`buyer`) USING HASH,
|
KEY `buyer` (`buyer`),
|
||||||
KEY `o_link` (`o_link`) USING HASH,
|
KEY `o_link` (`o_link`),
|
||||||
KEY `orderid` (`orderid`) USING BTREE
|
KEY `orderid` (`orderid`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
||||||
|
@ -23,11 +23,11 @@ CREATE TABLE `t_market_store` (
|
|||||||
`c_durability` float NOT NULL COMMENT '缓存-能量',
|
`c_durability` float NOT NULL COMMENT '缓存-能量',
|
||||||
`c_id` int(11) NOT NULL COMMENT '缓存-id',
|
`c_id` int(11) NOT NULL COMMENT '缓存-id',
|
||||||
PRIMARY KEY (`idx`) USING BTREE,
|
PRIMARY KEY (`idx`) USING BTREE,
|
||||||
UNIQUE KEY `idx` (`idx`) USING BTREE
|
UNIQUE KEY `idx` (`idx`)
|
||||||
KEY `o_link` (`o_link`) USING HASH,
|
KEY `o_link` (`o_link`),
|
||||||
KEY `owner_address` (`owner_address`) USING HASH,
|
KEY `owner_address` (`owner_address`),
|
||||||
KEY `token_id` (`token_id`) USING HASH,
|
KEY `token_id` (`token_id`),
|
||||||
KEY `createtime` (`createtime`) USING BTREE,
|
KEY `createtime` (`createtime`),
|
||||||
KEY `s_currency` (`s_currency`),
|
KEY `s_currency` (`s_currency`),
|
||||||
KEY `s_price` (`s_price`),
|
KEY `s_price` (`s_price`),
|
||||||
KEY `c_name` (`c_name`),
|
KEY `c_name` (`c_name`),
|
||||||
@ -52,10 +52,10 @@ CREATE TABLE `t_market_transaction_record` (
|
|||||||
`type` int(11) NOT NULL COMMENT '商品类型',
|
`type` int(11) NOT NULL COMMENT '商品类型',
|
||||||
PRIMARY KEY (`idx`)
|
PRIMARY KEY (`idx`)
|
||||||
KEY `createtime` (`createtime`) USING BTREE,
|
KEY `createtime` (`createtime`) USING BTREE,
|
||||||
KEY `seller` (`seller`) USING HASH,
|
KEY `seller` (`seller`),
|
||||||
KEY `buyer` (`buyer`) USING HASH,
|
KEY `buyer` (`buyer`),
|
||||||
KEY `o_link` (`o_link`) USING HASH,
|
KEY `o_link` (`o_link`),
|
||||||
KEY `orderid` (`orderid`) USING BTREE
|
KEY `orderid` (`orderid`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
insert into version (version) values(2023071301);
|
insert into version (version) values(2023071301);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user