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

9 lines
363 B

-- hh
-- 宠物助战选择数据
CREATE TABLE `role_dun_pet_choose`(
`role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
`pet_id` int(11) UNSIGNED NOT NULL COMMENT '宠物id',
`pos_id` smallint(5) UNSIGNED NOT NULL COMMENT '选择位置',
PRIMARY KEY(`role_id`, `pet_id`)
)ENGINE=InnoDb CHARSET=utf8 COMMENT="宠物助战选择数据表";