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

10 lines
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='装备-位置通用信息';