源战役
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

14 lignes
549 B

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