源战役
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

10 行
535 B

-- 装备系统
-- liushl
CREATE TABLE `equipment_pos` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`pos` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '装备位置',
`inlay` int(11) NOT NULL DEFAULT '0' COMMENT '上阵的龙语',
`inlay_list` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '已激活的龙语',
`power_lv` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '器灵等级',
PRIMARY KEY (`role_id`, `pos`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='装备-位置通用信息';