This commit is contained in:
aozhiwei 2024-06-28 16:06:17 +08:00
parent 1120059dd1
commit 80c7219484

View File

@ -155,6 +155,7 @@ CREATE TABLE `t_order` (
`status` varchar(60) NOT NULL DEFAULT '' COMMENT 'status',
`net_id` bigint NOT NULL DEFAULT '0' COMMENT 'net_id',
`token_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'token_id',
`seller_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'seller_address',
`contract_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'contract_address',
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT 'item_id',
`hero_quality` int(11) NOT NULL DEFAULT '0' COMMENT 'hero_quality',
@ -183,6 +184,7 @@ CREATE TABLE `t_order` (
KEY `idx_event_id` (`event_id`),
KEY `idx_contract_address` (`contract_address`),
KEY `idx_token_id` (`token_id`),
KEY `idx_seller_address` (`seller_address`),
KEY `idx_order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;