源战役
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.
 
 

9 lines
418 B

-- hh
-- 合成机
CREATE TABLE `printer_draw`(
`sub_type` int(11) UNSIGNED NOT NULL COMMENT '活动子类',
`role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
`id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配方id',
`time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
PRIMARY KEY(`sub_type`, `role_id`, `id`)
)ENGINE=InnoDB CHARSET=utf8 COMMENT="合成机-首次合成数据";