源战役
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 lines
461 B

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