From 075f457bd12508cf9b60156ae5cf110bb7045ef4 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 083340d9d..b15912a57 100644 --- a/backend/src/db/schemas/models.ts +++ b/backend/src/db/schemas/models.ts @@ -119,7 +119,7 @@ export enum ProjectVersion { 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" }