2022-02-16 08:22:50 -05:00
|
|
|
-- Launch of Construction category
|
2020-04-17 12:01:21 -04:00
|
|
|
-- Fields: Core construction material, Secondary construction materials, Roof covering materials
|
|
|
|
|
|
|
|
-- Construction materials: Wood, Stone, Brick, Steel, Reinforced Concrete, Other Metal
|
|
|
|
-- Other Natural Material, Other Man-Made Material
|
|
|
|
CREATE TYPE construction_materials
|
|
|
|
AS ENUM (
|
|
|
|
'Wood',
|
|
|
|
'Stone',
|
|
|
|
'Brick',
|
|
|
|
'Steel',
|
|
|
|
'Reinforced Concrete',
|
|
|
|
'Other Metal',
|
|
|
|
'Other Natural Material',
|
|
|
|
'Other Man-Made Material'
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Roof covering materials: Slate, Clay Tile, Wood, Asphalt, Iron or Steel, Other Metal
|
|
|
|
-- Other Natural Material, Other Man-Made Material
|
|
|
|
CREATE TYPE roof_covering
|
|
|
|
AS ENUM (
|
|
|
|
'Slate',
|
|
|
|
'Clay Tile',
|
|
|
|
'Wood',
|
|
|
|
'Asphalt',
|
|
|
|
'Iron or Steel',
|
|
|
|
'Other Metal',
|
|
|
|
'Other Natural Material',
|
|
|
|
'Other Man-Made Material'
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Core Construction Material
|
|
|
|
ALTER TABLE buildings
|
|
|
|
ADD COLUMN IF NOT EXISTS construction_core_material construction_materials;
|
|
|
|
|
|
|
|
-- Secondary Construction Materials
|
|
|
|
ALTER TABLE buildings
|
|
|
|
ADD COLUMN IF NOT EXISTS construction_secondary_materials construction_materials;
|
|
|
|
|
|
|
|
-- Main Roof Covering
|
|
|
|
ALTER TABLE buildings
|
|
|
|
ADD COLUMN IF NOT EXISTS construction_roof_covering roof_covering;
|