X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/86d5209118bdbacaac817b8f8a6ab7a6c769bdc7..1020a888346295466acc6cd3c366760f434d3f6c:/sql/tables.sql diff --git a/sql/tables.sql b/sql/tables.sql index 6263025c..f3217d5a 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -1,12 +1,15 @@ drop table if exists import_status; CREATE TABLE import_status ( - lastimportdate timestamp NOT NULL + lastimportdate timestamp NOT NULL, + sequence_id integer, + indexed boolean ); GRANT SELECT ON import_status TO "{www-user}" ; drop table if exists import_osmosis_log; CREATE TABLE import_osmosis_log ( batchend timestamp, + batchseq integer, batchsize integer, starttime timestamp, endtime timestamp,