mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-27 22:45:03 +00:00
Add landlord-override enum values for the Hyde 796 batch
Single FE migration for the model-repo Hyde-796 PRs merging together: - main_fuel: "wood logs" (Model#1406) - main_heating_system: "Electric boiler" (191), "Electric CPSU" (192), "Solid fuel room heater, open fire" (631), "… open fire with back boiler" (632), "… closed with boiler" (634) — the Gas-CPSU-dumping-ground split (Model#1403, ADR-0045) Labels mirror MainFuelType / MainHeatingSystemType in the model repo. Generated via drizzle-kit. Additive ALTER TYPE ADD VALUE only. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
9b9a718b65
commit
e8ef9d80d4
4 changed files with 11712 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
ALTER TYPE "public"."main_fuel" ADD VALUE 'wood logs' BEFORE 'biomass (community)';--> statement-breakpoint
|
||||
ALTER TYPE "public"."main_heating_system" ADD VALUE 'Electric boiler' BEFORE 'Electric room heaters';--> statement-breakpoint
|
||||
ALTER TYPE "public"."main_heating_system" ADD VALUE 'Electric CPSU' BEFORE 'Electric room heaters';--> statement-breakpoint
|
||||
ALTER TYPE "public"."main_heating_system" ADD VALUE 'Solid fuel room heater, open fire' BEFORE 'Solid fuel room heater, closed';--> statement-breakpoint
|
||||
ALTER TYPE "public"."main_heating_system" ADD VALUE 'Solid fuel room heater, open fire with back boiler' BEFORE 'Solid fuel room heater, closed';--> statement-breakpoint
|
||||
ALTER TYPE "public"."main_heating_system" ADD VALUE 'Solid fuel room heater, closed with boiler' BEFORE 'Air source heat pump';
|
||||
11693
src/app/db/migrations/meta/0255_snapshot.json
Normal file
11693
src/app/db/migrations/meta/0255_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1779,6 +1779,13 @@
|
|||
"when": 1782917026626,
|
||||
"tag": "0254_calm_marvel_boy",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 255,
|
||||
"version": "7",
|
||||
"when": 1782929072232,
|
||||
"tag": "0255_hyde_796_landlord_override_enums",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -164,6 +164,7 @@ export const MainFuelValues: [string, ...string[]] = [
|
|||
"house coal",
|
||||
"smokeless coal",
|
||||
"dual fuel (mineral and wood)",
|
||||
"wood logs",
|
||||
"biomass (community)",
|
||||
"Unknown",
|
||||
];
|
||||
|
|
@ -234,8 +235,13 @@ export const MainHeatingSystemValues: [string, ...string[]] = [
|
|||
"Electric storage heaters, convector",
|
||||
"Electric storage heaters, fan",
|
||||
"Direct-acting electric",
|
||||
"Electric boiler",
|
||||
"Electric CPSU",
|
||||
"Electric room heaters",
|
||||
"Solid fuel room heater, open fire",
|
||||
"Solid fuel room heater, open fire with back boiler",
|
||||
"Solid fuel room heater, closed",
|
||||
"Solid fuel room heater, closed with boiler",
|
||||
"Air source heat pump",
|
||||
"Community heating, boilers",
|
||||
"Community heating, CHP and boilers",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue