mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-30 02:07:52 +03:00
16 lines
412 B
MySQL
16 lines
412 B
MySQL
|
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
|
||
|
);
|