源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 regels
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='孩子排行榜奖励日志表';