2022-02-10 10:10:55 -05:00
|
|
|
-- note that you need to somehow reclassify such buildings, if present - before downgrading
|
|
|
|
|
2022-01-11 11:51:07 -05:00
|
|
|
-- equivalent to 015 migration
|
|
|
|
INSERT INTO reference_tables.landuse_classifications
|
|
|
|
(landuse_id, description, level, parent_id, is_used)
|
|
|
|
VALUES
|
|
|
|
-- order
|
2022-01-31 17:07:35 -05:00
|
|
|
('U15X','Unclassified, presumed non-residential','order',NULL,True);
|
2022-01-11 11:51:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
-- equivalent to 016 migration
|
|
|
|
INSERT INTO reference_tables.buildings_landuse_order
|
|
|
|
(landuse_id, description)
|
|
|
|
VALUES
|
|
|
|
-- order
|
2022-01-31 17:07:35 -05:00
|
|
|
('U15X','Unclassified, presumed non-residential');
|
2022-01-11 11:51:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
-- equivalent to 015 migration
|
|
|
|
INSERT INTO reference_tables.landuse_classifications
|
|
|
|
(landuse_id, description, level, parent_id, is_used)
|
|
|
|
VALUES
|
|
|
|
-- group
|
2022-01-31 17:07:35 -05:00
|
|
|
('U073X','Unclassified, presumed non-residential','group','U15X',True);
|
2022-01-11 11:51:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
-- equivalent to 016 migration
|
|
|
|
INSERT INTO reference_tables.buildings_landuse_group
|
|
|
|
(landuse_id, description, parent_order_id)
|
|
|
|
VALUES
|
|
|
|
-- group
|
2022-01-31 17:07:35 -05:00
|
|
|
('U073X','Unclassified, presumed non-residential','U15X');
|