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

  1. -- tyl 嗨点额外获得值
  2. CREATE TABLE `hi_points_extra` (
  3. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
  4. `sub_type` smallint(2) unsigned NOT NULL DEFAULT '0' COMMENT '活动子类型',
  5. `extra_points` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '额外嗨点值',
  6. `utime` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
  7. PRIMARY KEY (`role_id`,`sub_type`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='嗨点额外获得值';