From: Frederik Ramm Date: Fri, 9 Sep 2011 16:02:31 +0000 (+0000) Subject: create 'file' sequence required by update.php X-Git-Tag: v2.0.0~128 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/edb1e89be30f6b9dec33a36d8a48f6c10fa6297f create 'file' sequence required by update.php --- diff --git a/sql/tables.sql b/sql/tables.sql index 5d9c60b2..146425ce 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -308,3 +308,6 @@ CREATE TABLE import_polygon_delete ( type TEXT NOT NULL ); CREATE INDEX idx_import_polygon_delete_osmid ON import_polygon_delete USING BTREE (osm_type, osm_id); + +drop sequence file; +CREATE SEQUENCE file start 1;