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

14 lines
549 B

преди 1 месец
  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`;