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

13 lines
660 B

-- zmh
-- 材料上交管理
CREATE TABLE `unite_buff_mgr` (
`act` int(11) NOT NULL DEFAULT '0' COMMENT '活动',
`stime` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
`etime` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
`process` int(11) NOT NULL DEFAULT '0' COMMENT '全服进度',
`click` int(11) NOT NULL DEFAULT '0' COMMENT '已累计',
`need_add` int(11) NOT NULL DEFAULT '0' COMMENT '时段需累计',
`add_per` int(11) NOT NULL DEFAULT '0' COMMENT '单次增加',
`buffs` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '加成BUFF',
PRIMARY KEY (`act`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='材料上交管理';