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-15 07:53:32 -05:00
|
|
|
('U14X','Unclassified buildings','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-15 07:53:32 -05:00
|
|
|
('U14X','Unclassified buildings');
|
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-15 07:53:32 -05:00
|
|
|
('U072X','Unclassified, likely residential','group','U14X',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-15 07:53:32 -05:00
|
|
|
('U072X','Unclassified, likely residential','U14X');
|