mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
b9517c99ae
Also introduces a separate constant for the sql directory, so that it can be put separately from the rest of the data if required.
16 lines
412 B
SQL
16 lines
412 B
SQL
DROP TABLE IF EXISTS gb_postcode;
|
|
CREATE TABLE gb_postcode (
|
|
id integer,
|
|
postcode character varying(9),
|
|
geometry geometry,
|
|
CONSTRAINT enforce_dims_geometry CHECK ((st_ndims(geometry) = 2)),
|
|
CONSTRAINT enforce_srid_geometry CHECK ((st_srid(geometry) = 4326))
|
|
);
|
|
|
|
DROP TABLE IF EXISTS us_postcode;
|
|
CREATE TABLE us_postcode (
|
|
postcode text,
|
|
x double precision,
|
|
y double precision
|
|
);
|