]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables/tiger.sql
prepare release 5.2.0.post11
[nominatim.git] / lib-sql / tables / tiger.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 location_property_tiger;
9 CREATE TABLE location_property_tiger (
10   place_id BIGINT NOT NULL,
11   parent_place_id BIGINT,
12   startnumber INTEGER NOT NULL,
13   endnumber INTEGER NOT NULL,
14   step SMALLINT NOT NULL,
15   partition SMALLINT NOT NULL,
16   linegeo GEOMETRY NOT NULL,
17   postcode TEXT);