Skip to content
Snippets Groups Projects

feat: Create initial endpoint and add all supporting elements

Merged Zachary Sabourin requested to merge dev into master
Compare and
16 files
+ 928
17
Compare changes
  • Side-by-side
  • Inline
Files
16
@@ -26,4 +26,14 @@ CREATE TABLE IF NOT EXISTS `CommitValidationStatusGrouping` (
PRIMARY KEY (`commit_id`,`fingerprint`)
);
CREATE TABLE IF NOT EXISTS `PrivateProjectEvent` (
`userId` int(10) NOT NULL,
`projectId` int(10) NOT NULL,
`projectPath` varchar(255) NOT NULL,
`parentProject` int(10) DEFAULT NULL,
`creationDate` datetime NOT NULL,
`deletionDate` datetime DEFAULT NULL,
PRIMARY KEY (`userId`, `projectId`, `projectPath`)
);
ALTER TABLE CommitValidationMessage ADD COLUMN IF NOT EXISTS `committerEmail` varchar(255) DEFAULT NULL;
Loading