X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f17c5345ec0ec0b85347b6ccb1b50900d645b4b2..df3202017e681dc6973c66d8fc779604c6d29e3f:/sql/tables.sql diff --git a/sql/tables.sql b/sql/tables.sql index ac4d0956..efbe323e 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -199,7 +199,8 @@ CREATE TABLE placex ( indexed_status INTEGER, indexed_date TIMESTAMP, wikipedia TEXT, -- calculated wikipedia article name (language:title) - geometry_sector INTEGER + geometry_sector INTEGER, + calculated_country_code varchar(2) ); SELECT AddGeometryColumn('placex', 'centroid', 4326, 'GEOMETRY', 2); CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id); @@ -277,6 +278,7 @@ CREATE TABLE import_polygon_error ( SELECT AddGeometryColumn('import_polygon_error', 'prevgeometry', 4326, 'GEOMETRY', 2); SELECT AddGeometryColumn('import_polygon_error', 'newgeometry', 4326, 'GEOMETRY', 2); CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id); +GRANT SELECT ON import_polygon_error TO "www-data"; drop table import_polygon_delete; CREATE TABLE import_polygon_delete (