源战役
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

12 líneas
618 B

  1. -- tyl
  2. -- 修改装扮
  3. DROP TABLE IF EXISTS `dress_up_illustration_enable`;
  4. DROP TABLE IF EXISTS `dress_up_enabled`;
  5. CREATE TABLE `dress_up_enabled` (
  6. `player_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '用户id',
  7. `dress_id` int(11) NOT NULL DEFAULT '0' COMMENT '饰品id',
  8. `dress_type` smallint(2) NOT NULL DEFAULT '0' COMMENT '饰品类型id',
  9. `is_used` int(2) NOT NULL DEFAULT '0' COMMENT '是否正在使用 0-未使用 1-正使用',
  10. `time` int(10) NOT NULL DEFAULT '0' COMMENT '激活时间',
  11. PRIMARY KEY (`player_id`,`dress_id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='玩家激活的装扮';