diff --git a/sql/bcnftdb.sql b/sql/bcnftdb.sql index cfbb3764..fdcd2b63 100644 --- a/sql/bcnftdb.sql +++ b/sql/bcnftdb.sql @@ -406,6 +406,28 @@ 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_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等级', + `stacking_last_idx` bigint NOT NULL DEFAULT '0' COMMENT 'stacking_last_idx', + `escec_transfer_last_idx` bigint NOT NULL DEFAULT '0' COMMENT 'escec_transfer_last_idx', + `vester_deposit_last_idx` bigint NOT NULL DEFAULT '0' COMMENT 'vester_deposit_last_idx', + `vester_withdraw_last_idx` bigint NOT NULL DEFAULT '0' COMMENT 'vester_withdraw_last_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` --