源战役
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

10 linhas
432 B

  1. -- hh
  2. -- 时装套装
  3. CREATE TABLE `role_fashion_suit`(
  4. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
  5. `suit_id` int(11) UNSIGNED NOT NULL COMMENT '套装id',
  6. `suit_list` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '套装数据',
  7. `active` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否已激活',
  8. PRIMARY KEY(`role_id`, `suit_id`)
  9. )ENGINE=InnoDB CHARSET=utf8 COMMENT="时装套装数据";