id int(11) not null primary Key auto_increment comment '自增ID',
    uid int(11) not null unique Key comment '用户ID',
    nick_name varchar(64) Comment '昵称',
    achievement int(11) default 0 Comment '成就值',
    level int(11) Comment '用户等级',
    job varchar(32) Comment '职业方向',
    register_time datetime default CURRENT_TIMESTAMP Comment '注册时间'
)default charset=utf8