]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables/nominatim_properties.sql
prepare release 5.2.0.post11
[nominatim.git] / lib-sql / tables / nominatim_properties.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 nominatim_properties;
9 CREATE TABLE nominatim_properties (
10     property TEXT NOT NULL,
11     value TEXT
12 );