]> git.openstreetmap.org Git - nominatim.git/blob - data/us_postcode_table.sql
first draft
[nominatim.git] / data / us_postcode_table.sql
1 SET statement_timeout = 0;
2 SET client_encoding = 'UTF8';
3 SET check_function_bodies = false;
4 SET client_min_messages = warning;
5
6 SET search_path = public, pg_catalog;
7
8 SET default_tablespace = '';
9
10 SET default_with_oids = false;
11
12 CREATE TABLE us_postcode (
13     postcode text,
14     x double precision,
15     y double precision
16 );