mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added missing starting u value
This commit is contained in:
parent
5e881f256a
commit
55a46a9c2f
5 changed files with 1251 additions and 3 deletions
1
src/app/db/migrations/0028_premium_elektra.sql
Normal file
1
src/app/db/migrations/0028_premium_elektra.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "recommendation" ADD COLUMN "starting_u_value" real;
|
||||
1240
src/app/db/migrations/meta/0028_snapshot.json
Normal file
1240
src/app/db/migrations/meta/0028_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -197,6 +197,13 @@
|
|||
"when": 1691748727401,
|
||||
"tag": "0027_shocking_scrambler",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 28,
|
||||
"version": "5",
|
||||
"when": 1691752123533,
|
||||
"tag": "0028_premium_elektra",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -37,7 +37,7 @@ export const recommendation = pgTable("recommendation", {
|
|||
description: text("description").notNull(),
|
||||
estimatedCost: real("estimated_cost"),
|
||||
default: boolean("default").notNull(),
|
||||
startingUValue: real("new_u_value"),
|
||||
startingUValue: real("starting_u_value"),
|
||||
newUValue: real("new_u_value"),
|
||||
sapPoints: real("sap_points"),
|
||||
heatDemand: real("heat_demand"),
|
||||
|
|
|
|||
|
|
@ -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