]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables.sql
Switches associatedStreet handling to dedicated table
[nominatim.git] / lib-sql / tables.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 SEQUENCE IF EXISTS seq_place;
9 CREATE SEQUENCE seq_place start 1;
10
11 {% include('tables/status.sql') %}
12 {% include('tables/nominatim_properties.sql') %}
13 {% include('tables/location_area.sql') %}
14 {% include('tables/tiger.sql') %}
15 {% include('tables/interpolation.sql') %}
16 {% include('tables/search_name.sql') %}
17 {% include('tables/addressline.sql') %}
18 {% include('tables/placex.sql') %}
19 {% include('tables/postcodes.sql') %}
20 {% include('tables/entrance.sql') %}
21 {% include('tables/import_reports.sql') %}
22 {% include('tables/importance_tables.sql') %}
23
24