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