mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added exposed floor insulation to materials table
This commit is contained in:
parent
6571b4756c
commit
83616e699e
4 changed files with 1310 additions and 0 deletions
1
src/app/db/migrations/0042_past_shape.sql
Normal file
1
src/app/db/migrations/0042_past_shape.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "type" ADD VALUE 'exposed_floor_insulation';
|
||||
1301
src/app/db/migrations/meta/0042_snapshot.json
Normal file
1301
src/app/db/migrations/meta/0042_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -295,6 +295,13 @@
|
|||
"when": 1697788983167,
|
||||
"tag": "0041_dapper_silver_surfer",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 42,
|
||||
"version": "5",
|
||||
"when": 1698134217344,
|
||||
"tag": "0042_past_shape",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -17,6 +17,7 @@ export const MaterialType: [string, ...string[]] = [
|
|||
"cavity_wall_insulation",
|
||||
"mechanical_ventilation",
|
||||
"loft_insulation",
|
||||
"exposed_floor_insulation",
|
||||
];
|
||||
export const materialTypeEnum = pgEnum("type", MaterialType);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue