Added missing starting u value

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-11 12:18:54 +01:00
parent 5e881f256a
commit 55a46a9c2f
5 changed files with 1251 additions and 3 deletions

View file

@ -0,0 +1 @@
ALTER TABLE "recommendation" ADD COLUMN "starting_u_value" real;

File diff suppressed because it is too large Load diff

View file

@ -197,6 +197,13 @@
"when": 1691748727401,
"tag": "0027_shocking_scrambler",
"breakpoints": true
},
{
"idx": 28,
"version": "5",
"when": 1691752123533,
"tag": "0028_premium_elektra",
"breakpoints": true
}
]
}

View file

@ -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"),

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es5",
// "target": "ESNext",
// "target": "es5",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,