源战役
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 rivejä
535 B

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