CREATE TABLE `topic_indicator` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`topic_id` bigint(20) NOT NULL,
`computation_day` bigint(20) NOT NULL,
`publish_at` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `topic_indicator_guid` (`topic_id`,`computation_day`),
KEY `idx_computation_day` (`computation_day`),
KEY `idx_topic_computation_publish` (`topic_id`,`computation_day`,`publish_at`)
) ENGINE=InnoDB AUTO_INCREMENT=800561 DEFAULT CHARSET=utf8;