1
This commit is contained in:
parent
f866c5b91b
commit
0c2db2c1ce
@ -406,4 +406,23 @@ CREATE TABLE `t_staking_cec` (
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `t_vip_bind`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `t_vip_bind`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `t_vip_bind` (
|
||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(小狐狸)',
|
||||
`passport_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(passport)',
|
||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||||
PRIMARY KEY (`idx`),
|
||||
UNIQUE KEY `uk_account_addresss` (`account_address`),
|
||||
UNIQUE KEY `uk_passport_addresss` (`passport_address`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
-- Dump completed on 2015-08-19 18:51:22
|
||||
|
Loading…
x
Reference in New Issue
Block a user