This commit is contained in:
aozhiwei 2024-09-19 15:27:26 +08:00
commit 873e8dd80f

View File

@ -406,6 +406,32 @@ CREATE TABLE `t_staking_cec` (
) 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 */;
--
-- Table structure for table `t_vip_user`
--
DROP TABLE IF EXISTS `t_vip_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_vip_user` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址',
`vip_lv` bigint NOT NULL DEFAULT '0' COMMENT 'vip等级',
`escec_balance` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec balance',
`escec_stacking` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec stacking',
`escec_convert` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec convert',
`escec_total` varchar(60) NOT NULL DEFAULT '' COMMENT 'esCec total',
`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',
`vester_deposit_last_src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'vester_deposit_last_src_idx',
`vester_withdraw_last_src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'vester_withdraw_last_src_idx',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
KEY `idx_account_address` (`account_address`)
) 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` -- Table structure for table `t_vip_bind`
-- --