]> git.openstreetmap.org Git - nominatim.git/blobdiff - sql/tables.sql
README: tiny markdown syntax error
[nominatim.git] / sql / tables.sql
index 8d8ba9a75fe26748ba7e29de0efb3143ddb6693d..949dc6ffe1c8c26dc7e6bb48727b61c4a9443a42 100644 (file)
@@ -10,7 +10,7 @@ drop table if exists import_osmosis_log;
 CREATE TABLE import_osmosis_log (
   batchend timestamp,
   batchseq integer,
-  batchsize integer,
+  batchsize bigint,
   starttime timestamp,
   endtime timestamp,
   event text
@@ -62,6 +62,7 @@ CREATE TABLE location_area (
   rank_address SMALLINT NOT NULL,
   country_code VARCHAR(2),
   isguess BOOL,
+  postcode TEXT,
   centroid GEOMETRY(Point, 4326),
   geometry GEOMETRY(Geometry, 4326)
   );
@@ -211,6 +212,7 @@ CREATE TABLE location_postcode (
   geometry GEOMETRY(Geometry, 4326)
   );
 CREATE INDEX idx_postcode_geometry ON location_postcode USING GIST (geometry) {ts:address-index};
+GRANT SELECT ON location_postcode TO "{www-user}" ;
 
 CREATE TRIGGER location_postcode_before_update BEFORE UPDATE ON location_postcode
     FOR EACH ROW EXECUTE PROCEDURE postcode_update();
@@ -225,8 +227,8 @@ CREATE TABLE import_polygon_error (
   country_code varchar(2),
   updated timestamp,
   errormessage text,
-  prevgeometry GEOMTRY(Geometry, 4326),
-  newgeometry GEOMTRY(Geometry, 4326)
+  prevgeometry GEOMETRY(Geometry, 4326),
+  newgeometry GEOMETRY(Geometry, 4326)
   );
 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-user}";