Skip to content
Snippets Groups Projects

Iss #68 - Update UI for Git ECA validation to be more friendly

Merged Iss #68 - Update UI for Git ECA validation to be more friendly
1 unresolved thread
Merged Martin Lowe requested to merge (removed):malowe/master/68 into master
1 unresolved thread
Files
7
+ 4
1
@@ -3,6 +3,7 @@ CREATE TABLE `CommitValidationMessage` (
`commit_id` bigint(20) NOT NULL,
`providerId` varchar(100) DEFAULT NULL,
`authorEmail` varchar(100) DEFAULT NULL,
`committerEmail` varchar(255) DEFAULT NULL,
`eclipseId` varchar(255) DEFAULT NULL,
`statusCode` int(11) NOT NULL,
PRIMARY KEY (`id`)
@@ -23,4 +24,6 @@ CREATE TABLE `CommitValidationStatusGrouping` (
`fingerprint` varchar(255) NOT NULL,
`commit_id` bigint(20) NOT NULL,
PRIMARY KEY (`commit_id`,`fingerprint`)
);
\ No newline at end of file
);
ALTER TABLE CommitValidationMessage ADD COLUMN IF NOT EXISTS `committerEmail` varchar(255) DEFAULT NULL;
Loading