]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables/status.sql
Merge pull request #3989 from lonvia/rework-misc-tests
[nominatim.git] / lib-sql / tables / status.sql
1 -- SPDX-License-Identifier: GPL-2.0-only
2 --
3 -- This file is part of Nominatim. (https://nominatim.org)
4 --
5 -- Copyright (C) 2026 by the Nominatim developer community.
6 -- For a full list of authors see the git log.
7
8 DROP TABLE IF EXISTS import_status;
9 CREATE TABLE import_status (
10   lastimportdate TIMESTAMP WITH TIME ZONE NOT NULL,
11   sequence_id INTEGER,
12   indexed BOOLEAN
13   );
14
15 DROP TABLE IF EXISTS import_osmosis_log;
16 CREATE TABLE import_osmosis_log (
17   batchend TIMESTAMP,
18   batchseq INTEGER,
19   batchsize BIGINT,
20   starttime TIMESTAMP,
21   endtime TIMESTAMP,
22   event TEXT
23   );