mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added new status type
This commit is contained in:
parent
e7536b4bb0
commit
0311c770eb
5 changed files with 2954 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
1
src/app/db/migrations/0096_married_umar.sql
Normal file
1
src/app/db/migrations/0096_married_umar.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "status" ADD VALUE 'survey';
|
||||
2939
src/app/db/migrations/meta/0096_snapshot.json
Normal file
2939
src/app/db/migrations/meta/0096_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -673,6 +673,13 @@
|
|||
"when": 1725474928372,
|
||||
"tag": "0095_sloppy_ikaris",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 96,
|
||||
"version": "5",
|
||||
"when": 1725897920431,
|
||||
"tag": "0096_married_umar",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@ import { InferModel } from "drizzle-orm";
|
|||
|
||||
export const PortfolioStatus: [string, ...string[]] = [
|
||||
"scoping",
|
||||
"survey",
|
||||
"assessment",
|
||||
"tendering",
|
||||
"project underway",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue