This commit is contained in:
aozhiwei 2024-09-18 17:37:41 +08:00
parent a54d934352
commit a117b1410b

View File

@ -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`),