Remove virtual migration

it was an actual migration executed, but commited is a bit different to avoid completely changing meaning in database
it ended this way due to problems with coordination between code and mapping
This commit is contained in:
Mateusz Konieczny 2022-02-14 13:50:49 +01:00
parent 7c784ffc06
commit db34ee5b44

View File

@ -1,37 +0,0 @@
INSERT INTO reference_tables.landuse_classifications
(landuse_id, description, level, parent_id, is_used)
VALUES
('U15X','Unclassified, presumed non-residential','order',NULL,True);
INSERT INTO reference_tables.buildings_landuse_order
(landuse_id, description)
VALUES
('U15X','Unclassified, presumed non-residential');
INSERT INTO reference_tables.landuse_classifications
(landuse_id, description, level, parent_id, is_used)
VALUES
('U073X','Unclassified, presumed non-residential','group','U15X',True);
INSERT INTO reference_tables.buildings_landuse_group
(landuse_id, description, parent_order_id)
VALUES
('U073X','Unclassified, presumed non-residential', 'U15X');
UPDATE buildings
SET current_landuse_order = 'Unclassified, presumed non-residential'
WHERE current_landuse_order = 'Unclassified buildings';
UPDATE buildings
SET current_landuse_group = '{"Unclassified, presumed non-residential"}'
WHERE current_landuse_group = '{"Unclassified, likely residential"}';
DELETE FROM reference_tables.landuse_classifications
WHERE landuse_id='U14X';
DELETE FROM reference_tables.buildings_landuse_order
WHERE landuse_id='U14X';
DELETE FROM reference_tables.landuse_classifications
WHERE landuse_id='U072X';
DELETE FROM reference_tables.buildings_landuse_group
WHERE landuse_id='U072X';