源战役
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

10 linhas
579 B

  1. -- tyl 孩子排行榜奖励日志表
  2. CREATE TABLE IF NOT EXISTS `log_child_vote_reward` (
  3. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '序号',
  4. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id',
  5. `rank` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '孩子点赞排名',
  6. `reward` varchar(255) NOT NULL DEFAULT '[]' COMMENT '奖励',
  7. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间戳',
  8. PRIMARY KEY (`id`)
  9. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='孩子排行榜奖励日志表';