Added new status type

This commit is contained in:
Khalim Conn-Kowlessar 2024-09-09 17:05:40 +01:00
parent e7536b4bb0
commit 0311c770eb
5 changed files with 2954 additions and 0 deletions

View file

@ -64,6 +64,12 @@ const statusColor: {
hoverText: "This portfolio is currently in the assessment stage",
propertyHoverText: "This property is currently in the assessment stage",
},
survey: {
class: "bg-emerald-500 hover:bg-emerald-500",
text: "survey",
hoverText: "This portfolio is currently in the survey stage",
propertyHoverText: "This property is currently in the survey stage",
},
tendering: {
class: "bg-emerald-500 hover:bg-emerald-500",
text: "tendering",

View file

@ -0,0 +1 @@
ALTER TYPE "status" ADD VALUE 'survey';

File diff suppressed because it is too large Load diff

View file

@ -673,6 +673,13 @@
"when": 1725474928372,
"tag": "0095_sloppy_ikaris",
"breakpoints": true
},
{
"idx": 96,
"version": "5",
"when": 1725897920431,
"tag": "0096_married_umar",
"breakpoints": true
}
]
}

View file

@ -13,6 +13,7 @@ import { InferModel } from "drizzle-orm";
export const PortfolioStatus: [string, ...string[]] = [
"scoping",
"survey",
"assessment",
"tendering",
"project underway",