This commit is contained in:
aozhiwei 2022-11-01 13:43:49 +08:00
parent c439b408c4
commit c3a5ca9314

View File

@ -435,7 +435,6 @@ DROP TABLE IF EXISTS `t_order721`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_order721` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id',
`token_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'token_id',
`item_uniid` varchar(60) NOT NULL DEFAULT '' COMMENT 'item_uniid',
`buyer_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'buyer_address',
@ -453,7 +452,6 @@ CREATE TABLE `t_order721` (
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
UNIQUE KEY `order_id` (`order_id`),
UNIQUE KEY `nonce` (`nonce`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;