Merge branch 'hjb' of git.kingsome.cn:server/game2006api into hjb
This commit is contained in:
commit
5865be0e7d
@ -383,4 +383,27 @@ CREATE TABLE `t_recharge_return_contribution` (
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `t_staking_cec`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `t_staking_cec`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `t_staking_cec` (
|
||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||
`account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址',
|
||||
`token_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'cec地址(cec escec)',
|
||||
`amount` varchar(60) NOT NULL DEFAULT '' COMMENT '当前数量',
|
||||
`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 '创建时间',
|
||||
`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 */;
|
||||
|
||||
-- Dump completed on 2015-08-19 18:51:22
|
||||
|
Loading…
x
Reference in New Issue
Block a user