1
This commit is contained in:
parent
0856cd5a4b
commit
a2cb2bbc06
@ -38,8 +38,8 @@ CREATE TABLE `t_user` (
|
|||||||
`rank` int(11) NOT NULL DEFAULT '0' COMMENT '段位',
|
`rank` int(11) NOT NULL DEFAULT '0' COMMENT '段位',
|
||||||
`history_best_rank` int(11) NOT NULL DEFAULT '0' COMMENT '历史最高段位',
|
`history_best_rank` int(11) NOT NULL DEFAULT '0' COMMENT '历史最高段位',
|
||||||
`score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
|
`score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
|
||||||
`gold` int(11) NOT NULL DEFAULT '0' COMMENT '金币',
|
`gold` bigint NOT NULL DEFAULT '0' COMMENT '金币',
|
||||||
`diamond` int(11) NOT NULL DEFAULT '0' COMMENT '钻石',
|
`diamond` bigint NOT NULL DEFAULT '0' COMMENT '钻石',
|
||||||
`hero_id` int(11) NOT NULL DEFAULT '0' COMMENT '当前上阵英雄id',
|
`hero_id` int(11) NOT NULL DEFAULT '0' COMMENT '当前上阵英雄id',
|
||||||
`first_fight` int(11) NOT NULL DEFAULT '0' COMMENT '是否首战',
|
`first_fight` int(11) NOT NULL DEFAULT '0' COMMENT '是否首战',
|
||||||
`last_season_id` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次赛季id',
|
`last_season_id` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次赛季id',
|
||||||
@ -84,8 +84,8 @@ DROP TABLE IF EXISTS `t_user_wallet_offline`;
|
|||||||
CREATE TABLE `t_user_wallet_offline` (
|
CREATE TABLE `t_user_wallet_offline` (
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||||
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id(channel + "_" + gameid + "_" + openid)',
|
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id(channel + "_" + gameid + "_" + openid)',
|
||||||
`gold` int(11) NOT NULL DEFAULT '0' COMMENT '金币',
|
`gold` bigint NOT NULL DEFAULT '0' COMMENT '金币',
|
||||||
`diamond` int(11) NOT NULL DEFAULT '0' COMMENT '钻石',
|
`diamond` bigint NOT NULL DEFAULT '0' COMMENT '钻石',
|
||||||
`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`),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user