Add borough to supported place classes

pull/1470/head
James Westman 2022-12-31 17:42:20 -06:00
rodzic c4d86d44a6
commit 3b611877c5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CE2DBA0ADB654EA6
4 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -177,6 +177,7 @@ tables:
- town
- village
- hamlet
- borough
- suburb
- quarter
- neighbourhood

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 53 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 55 KiB

Wyświetl plik

@ -38,6 +38,7 @@ layer:
- town
- village
- hamlet
- borough
- suburb
- quarter
- neighbourhood

Wyświetl plik

@ -4,7 +4,7 @@ $$
PERFORM 'city_place'::regtype;
EXCEPTION
WHEN undefined_object THEN
CREATE TYPE city_place AS enum ('city', 'town', 'village', 'hamlet', 'suburb', 'quarter', 'neighbourhood', 'isolated_dwelling');
CREATE TYPE city_place AS enum ('city', 'town', 'village', 'hamlet', 'borough', 'suburb', 'quarter', 'neighbourhood', 'isolated_dwelling');
END
$$;