mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 01:47:57 +00:00
18 lines
519 B
SQL
18 lines
519 B
SQL
-- SPDX-License-Identifier: GPL-2.0-only
|
|
--
|
|
-- This file is part of Nominatim. (https://nominatim.org)
|
|
--
|
|
-- Copyright (C) 2026 by the Nominatim developer community.
|
|
-- For a full list of authors see the git log.
|
|
|
|
DROP TABLE IF EXISTS location_property_tiger;
|
|
CREATE TABLE location_property_tiger (
|
|
place_id BIGINT NOT NULL,
|
|
parent_place_id BIGINT,
|
|
startnumber INTEGER NOT NULL,
|
|
endnumber INTEGER NOT NULL,
|
|
step SMALLINT NOT NULL,
|
|
partition SMALLINT NOT NULL,
|
|
linegeo GEOMETRY NOT NULL,
|
|
postcode TEXT);
|