源战役
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.

14 linhas
549 B

  1. -- 最近联系人列表
  2. -- hh
  3. CREATE TABLE `last_rela_chat`(
  4. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
  5. `other_id` bigint(20) UNSIGNED NOT NULL COMMENT '对方id',
  6. `time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最近聊天时间',
  7. PRIMARY KEY(`role_id`, `other_id`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT="最近聊天信息";
  9. -- 社交增加字段
  10. -- hh
  11. ALTER TABLE `relationship`
  12. ADD COLUMN `contribute` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '本方亲密度贡献比例' AFTER `intimacy`;