From: Frederik Ramm Date: Fri, 21 Oct 2011 06:48:04 +0000 (+0000) Subject: fix typo mentioned by mathieu monney on mapquest's forum two weeks ago. this typo... X-Git-Tag: v2.0.0~127 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/d7f4a7dac6b611ad92ec95d247b962f8bf23dd61 fix typo mentioned by mathieu monney on mapquest's forum two weeks ago. this typo is responsible for 'location_property_tiger does not exist' errors. --- diff --git a/sql/tables-minimal.sql b/sql/tables-minimal.sql index 3dad8aa5..d7a28633 100644 --- a/sql/tables-minimal.sql +++ b/sql/tables-minimal.sql @@ -31,7 +31,7 @@ drop table IF EXISTS location_property CASCADE; CREATE TABLE location_property ( place_id BIGINT, partition integer, - parent_place_id BIINT, + parent_place_id BIGINT, housenumber TEXT, postcode TEXT );