From: Kaj-Michael Lang Date: Mon, 16 Jul 2007 09:49:44 +0000 (+0300) Subject: Add place table for storing cities, towns, villages, hamlets and suburbs X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72b0dd44c20162abb07c3e2b9310332f3a0b1dd7;p=mapper Add place table for storing cities, towns, villages, hamlets and suburbs --- diff --git a/docs/osm-tables.sql b/docs/osm-tables.sql index 8bbe370..7bbfeed 100644 --- a/docs/osm-tables.sql +++ b/docs/osm-tables.sql @@ -47,6 +47,12 @@ create table way_ref ( int_ref varchar(32) ); +create table places ( + nid int primary key, + type int not null, + name text +); + CREATE TABLE poi ( poi_id integer PRIMARY KEY, lat real not null,