This commit is contained in:
aozhiwei 2024-09-03 17:12:23 +08:00
parent 38655ae3ae
commit 13560f9dcf

View File

@ -396,6 +396,9 @@ CREATE TABLE `t_staking_cec` (
`token_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'cec地址(cec escec)', `token_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'cec地址(cec escec)',
`amount` varchar(60) NOT NULL DEFAULT '' COMMENT '当前数量', `amount` varchar(60) NOT NULL DEFAULT '' COMMENT '当前数量',
`last_apply_record_idx` bigint NOT NULL COMMENT '自增id', `last_apply_record_idx` bigint NOT NULL COMMENT '自增id',
`growth_value` varchar(60) NOT NULL DEFAULT '' COMMENT '成长值',
`growth_value_int64` bigint NOT NULL COMMENT 'vip等级int64',
`vip_lv` bigint NOT NULL COMMENT 'vip等级',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间', `createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间', `modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`), PRIMARY KEY (`idx`),