Automatically update in progress projects to stalled

This commit is contained in:
Alex Cabal 2024-12-14 23:49:09 -06:00
parent c7a4e34e31
commit 9b9d93bc52
6 changed files with 118 additions and 14 deletions

View file

@ -12,5 +12,6 @@ CREATE TABLE IF NOT EXISTS `Projects` (
`Ended` datetime DEFAULT NULL,
`ManagerUserId` int(11) NOT NULL,
`ReviewerUserId` int(11) NOT NULL,
`LastCommitTimestamp` DATETIME NULL DEFAULT NULL,
PRIMARY KEY (`ProjectId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;