Created
August 18, 2015 14:25
-
-
Save StasKoval/50670e408fc90f56ccd6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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