源战役
Você não pode selecionar mais de 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
443 B

-- hh
-- 排行榜点赞数据保存
CREATE TABLE `role_praise_target`(
`role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
`rank_type` int(11) UNSIGNED NOT NULL COMMENT '排行类型',
`praise_id` bigint(20) UNSIGNED NOT NULL COMMENT '点赞玩家',
`time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '点赞时间',
PRIMARY KEY(`role_id`, `rank_type`)
)ENGINE=InnoDB CHARSET=utf8 COMMENT="排行榜点赞数据";