This commit is contained in:
aozhiwei 2022-01-14 19:28:42 +08:00
parent 7c76d63320
commit 5cc75ff718

View File

@ -36,6 +36,24 @@ CREATE TABLE `t_boxes` (
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_goods`
--
DROP TABLE IF EXISTS `t_goods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_goods` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`goods_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'goods_id',
`goods_num` int(11) NOT NULL DEFAULT '0' COMMENT 'goods数量',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
UNIQUE KEY `box_id` (`box_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_nfts`
--