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

8 lines
363 B

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