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

8 lines
418 B

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