remove street and addr_place columns in placex

The information is onyl needed for parenting,
so no need to store it permanently.
This commit is contained in:
Sarah Hoffmann
2017-04-05 22:19:42 +02:00
parent 3bb903cf92
commit 050b0a2ced
5 changed files with 41 additions and 39 deletions

View File

@@ -83,7 +83,7 @@ $hLog = logStart($oDB, 'details', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
// Get the details for this point
$sSQL = "SELECT place_id, osm_type, osm_id, class, type, name, admin_level,";
$sSQL .= " housenumber, street, postcode, country_code,";
$sSQL .= " housenumber, postcode, country_code,";
$sSQL .= " importance, wikipedia,";
$sSQL .= " to_char(indexed_date, 'YYYY-MM-DD HH24:MI') AS indexed_date,";
$sSQL .= " parent_place_id, ";