源战役
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

10 lignes
579 B

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