country_name: use separate columns for names from OSM

This allows us to distinguish between base names and imported ones
and consiquently removing imported ones if necessary.
This commit is contained in:
Sarah Hoffmann
2022-02-22 23:35:48 +01:00
parent a3e4e8e5cd
commit a9e3329c39
4 changed files with 27 additions and 18 deletions

View File

@@ -5,6 +5,7 @@
CREATE TABLE public.country_name (
country_code character varying(2),
name public.hstore,
derived_name public.hstore,
country_default_language_code text,
partition integer
);