From a117b1410b7328c865ce95ba70d2cbe9e9afee75 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 18 Sep 2024 17:37:41 +0800 Subject: [PATCH] 1 --- sql/bcnftdb.sql | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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`),