Merge pull request #354 from Hestia-Homes/chore/override-source-os-places

feat(db): add os_places to override_source enum
This commit is contained in:
KhalimCK 2026-07-06 14:52:24 +01:00 committed by GitHub
commit 03a427193f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11792 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "public"."override_source" ADD VALUE 'os_places';

File diff suppressed because it is too large Load diff

View file

@ -1814,6 +1814,13 @@
"when": 1783075096141,
"tag": "0259_fantastic_rockslide",
"breakpoints": true
},
{
"idx": 260,
"version": "7",
"when": 1783345567793,
"tag": "0260_natural_enchantress",
"breakpoints": true
}
]
}

View file

@ -262,6 +262,8 @@ export const MainHeatingSystemValues: [string, ...string[]] = [
export const OverrideSourceValues: [string, ...string[]] = [
"classifier",
"user",
// Deterministic OS Places classification-code mapping (postcode search, ADR-0007)
"os_places",
];
export const propertyTypeEnum = pgEnum("property_type", PropertyTypeValues);