colouring-montreal/migrations/003.index-buildings.up.sql

14 lines
566 B
MySQL
Raw Normal View History

-- Create building indexes after bulk loading
-- Building index over UPRNs (given a building, find UPRNs)
2018-10-02 16:12:46 -04:00
CREATE INDEX IF NOT EXISTS uprn_building_idx ON building_properties ( building_id );
-- UPRN index (given a UPRN, find buildings or parents)
2018-10-02 16:12:46 -04:00
CREATE INDEX IF NOT EXISTS uprn_uprn_idx ON building_properties ( uprn );
-- Parent index over UPRNs (given a UPRN, find children)
2018-10-02 16:12:46 -04:00
CREATE INDEX IF NOT EXISTS uprn_parent_idx ON building_properties ( parent_uprn );
-- TOID index over buildings
2018-10-02 16:12:46 -04:00
CREATE INDEX IF NOT EXISTS building_toid_idx ON buildings ( ref_toid );