mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 12:06:27 +03:00
17 lines
325 B
SQL
17 lines
325 B
SQL
SET statement_timeout = 0;
|
|
SET client_encoding = 'UTF8';
|
|
SET check_function_bodies = false;
|
|
SET client_min_messages = warning;
|
|
|
|
SET search_path = public, pg_catalog;
|
|
|
|
SET default_tablespace = '';
|
|
|
|
SET default_with_oids = false;
|
|
|
|
CREATE TABLE us_postcode (
|
|
postcode text,
|
|
x double precision,
|
|
y double precision
|
|
);
|