diff --git a/sql/bcnftdb.sql b/sql/bcnftdb.sql index fdcd2b63..cf5c4a7b 100644 --- a/sql/bcnftdb.sql +++ b/sql/bcnftdb.sql @@ -417,10 +417,13 @@ 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', + `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', + `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`),