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

9 linhas
596 B

-- liushl 护送
CREATE TABLE `role_convoy` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`convoy_id` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '可护送对象',
`last_attack_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '上次攻击护送玩家时间',
`is_robber` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否打劫状态##1是|0不是',
`convoying` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '当前护送对象##没有时为0',
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='护送信息##合服保留';