源战役
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 lines
443 B

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