mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
added new document type
This commit is contained in:
parent
b5777e380c
commit
c983cdd688
5 changed files with 2874 additions and 3 deletions
1
src/app/db/migrations/0092_illegal_magma.sql
Normal file
1
src/app/db/migrations/0092_illegal_magma.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "document_type" ADD VALUE 'Scenario Draft EPC';
|
||||
2863
src/app/db/migrations/meta/0092_snapshot.json
Normal file
2863
src/app/db/migrations/meta/0092_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -645,6 +645,13 @@
|
|||
"when": 1725445028849,
|
||||
"tag": "0091_fuzzy_doctor_spectrum",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 92,
|
||||
"version": "5",
|
||||
"when": 1725459183539,
|
||||
"tag": "0092_illegal_magma",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -148,7 +148,7 @@ export const DocumentType: [string, ...string[]] = [
|
|||
"Evidence Report",
|
||||
"Summary Information",
|
||||
"Floor Plan",
|
||||
"Scenario EPR",
|
||||
"Scenario Draft EPC",
|
||||
];
|
||||
|
||||
export const DocumentTypeEnum = pgEnum("document_type", DocumentType);
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"target": "es5",
|
||||
// "target": "ESNext",
|
||||
// "target": "es5",
|
||||
"target": "ESNext",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue