源战役
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

8 rader
497 B

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