源战役
Você não pode selecionar mais de 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
461 B

-- tyl
-- 衣橱
CREATE TABLE `wardrobe_value` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
`type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '外观类型',
`collect` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '收集进度',
`value` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '风采值',
PRIMARY KEY (`role_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='衣橱-风采值';