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

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