add t_nft_up_event table

This commit is contained in:
hujiabin 2022-11-04 19:06:41 +08:00
parent 706fa58902
commit 78143cc9c0

View File

@ -788,3 +788,23 @@ CREATE TABLE `t_transaction` (
KEY `account_id` (`account_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_nft_up_event`
--
DROP TABLE IF EXISTS `t_nft_up_event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_nft_up_event` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`trans_id` varchar(255) NOT NULL DEFAULT '' COMMENT '事务id',
`token_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'token_id',
`value` int(11) NOT NULL DEFAULT '0' COMMENT 'value',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
UNIQUE KEY `trans_id` (`trans_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;