X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8d221e2c8263133b9784803dc7f61701ae872254..fb9a0414ffdb376422cc6ec7d519fff60255af7b:/sql/tables.sql diff --git a/sql/tables.sql b/sql/tables.sql index 3a0c8351..13954149 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -32,6 +32,7 @@ CREATE TABLE query_log ( results integer ); CREATE INDEX idx_query_log ON query_log USING BTREE (starttime); +GRANT SELECT ON query_log TO "www-data" ; GRANT INSERT ON query_log TO "www-data" ; GRANT UPDATE ON query_log TO "www-data" ; @@ -200,7 +201,7 @@ CREATE TABLE placex ( indexed_date TIMESTAMP, wikipedia TEXT, -- calculated wikipedia article name (language:title) geometry_sector INTEGER, - calaculated_country_code varchar(2) + calculated_country_code varchar(2) ); SELECT AddGeometryColumn('placex', 'centroid', 4326, 'GEOMETRY', 2); CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id); @@ -278,6 +279,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 (