add typing information to DB properties

This commit is contained in:
Sarah Hoffmann
2022-07-05 10:34:55 +02:00
parent 69f9122bef
commit e6775e713c
2 changed files with 11 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ GRANT SELECT ON TABLE country_name TO "{{config.DATABASE_WEBUSER}}";
DROP TABLE IF EXISTS nominatim_properties;
CREATE TABLE nominatim_properties (
property TEXT,
property TEXT NOT NULL,
value TEXT
);
GRANT SELECT ON TABLE nominatim_properties TO "{{config.DATABASE_WEBUSER}}";