1
This commit is contained in:
parent
07c1cc48b6
commit
0bbb765c8d
@ -1,20 +1,26 @@
|
|||||||
DROP TABLE IF EXISTS `t_vip_bind`;
|
use bcnft_dev;
|
||||||
|
DROP TABLE IF EXISTS `t_vip_user`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
CREATE TABLE `t_vip_bind` (
|
CREATE TABLE `t_vip_user` (
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||||
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(小狐狸)',
|
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址',
|
||||||
`passport_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址(passport)',
|
`vip_lv` bigint NOT NULL DEFAULT '0' COMMENT 'vip等级',
|
||||||
`email` varchar(80) COMMENT 'email',
|
`escec_balance` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec balance',
|
||||||
`lower_case_email` varchar(80) COMMENT 'lower_case_email',
|
`escec_stacking` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec stacking',
|
||||||
|
`escec_convert` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec convert',
|
||||||
|
`stacking_last_src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'stacking_last_src_idx',
|
||||||
|
`escec_transfer_last_src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'escec_transfer_last_src_idx',
|
||||||
|
`deposit_withdraw_last_src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'deposit_withdraw_last_src_idx',
|
||||||
|
`last_convert_time` int(11) NOT NULL DEFAULT '0' COMMENT 'last_convert_time',
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||||||
PRIMARY KEY (`idx`),
|
PRIMARY KEY (`idx`),
|
||||||
UNIQUE KEY `uk_account_addresss` (`account_address`),
|
KEY `idx_account_address` (`account_address`)
|
||||||
UNIQUE KEY `uk_passport_addresss` (`passport_address`)
|
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
use bcevent_dev;
|
||||||
DROP TABLE IF EXISTS `t_staking_cec_record`;
|
DROP TABLE IF EXISTS `t_staking_cec_record`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user