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

14 regels
674 B

-- 周计数器 四点
CREATE TABLE `counter_week_four` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id',
`module` int(11) NOT NULL DEFAULT '0' COMMENT '类型',
`sub_module` int(11) NOT NULL DEFAULT '0' COMMENT '功能子id',
`type` bigint(20) NOT NULL DEFAULT '0',
`count` int(11) NOT NULL COMMENT '数量',
`other` varchar(1024) NOT NULL DEFAULT '' COMMENT '扩展数据',
`refresh_time` int(11) NOT NULL COMMENT '刷新时间',
PRIMARY KEY (`role_id`,`module`,`sub_module`,`type`),
KEY `module` (`module`),
KEY `sub_module` (`sub_module`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='4点周计数器';