From b587e6a4a1372eea569807eee690c22f3f8de1dd Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:15:27 +0100 Subject: [PATCH] Update models.ts --- backend/src/db/schemas/models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/db/schemas/models.ts b/backend/src/db/schemas/models.ts index a405ba004..afe1c3091 100644 --- a/backend/src/db/schemas/models.ts +++ b/backend/src/db/schemas/models.ts @@ -125,7 +125,7 @@ export enum ProjectUpgradeStatus { export enum ProjectUpgradeStatus { InProgress = "IN_PROGRESS", - // Completed = "Project upgrade completed.", // Will be null if completed. So a completed status is not needed + // Completed -> Will be null if completed. So a completed status is not needed Failed = "FAILED" }