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:
Jun-te Kim 2026-07-01 18:04:51 +00:00
parent 9b9a718b65
commit e8ef9d80d4
4 changed files with 11712 additions and 0 deletions

View file

@ -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';

File diff suppressed because it is too large Load diff

View file

@ -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
}
]
}

View file

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