Skip to content

Instantly share code, notes, and snippets.

@StasKoval
Created August 18, 2015 14:25
Show Gist options
  • Save StasKoval/50670e408fc90f56ccd6 to your computer and use it in GitHub Desktop.
Save StasKoval/50670e408fc90f56ccd6 to your computer and use it in GitHub Desktop.
CREATE TABLE `component_status_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`component_id` int(11) DEFAULT NULL,
`build_id` int(11) DEFAULT NULL,
`build_flow_id` int(11) DEFAULT NULL,
`test_ci_result_id` int(11) DEFAULT NULL,
`status` int(11) DEFAULT NULL,
`statistic` varchar(255) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `index_component_status_logs` (`build_flow_id`,`status`,`component_id`,`build_id`,`test_ci_result_id`)
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment