]> err.no Git - mapper/commitdiff
Fix POI id fields to be AUTOINCREMENT..
authorKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 20:49:55 +0000 (23:49 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Thu, 25 Oct 2007 20:49:55 +0000 (23:49 +0300)
docs/osm-tables.sql

index b82f47c85a287d4ae4b3d026965c8c06b9eb2741..f7938cee8d18609966d99487139b7c438ccd5134 100644 (file)
@@ -72,7 +72,7 @@ create table places (
 );
 
 create table poi (
-       poi_id  int PRIMARY KEY,
+       poi_id  INTEGER PRIMARY KEY AUTOINCREMENT,
        lat             real not null,
        lon             real not null,
        elev    real default 0.0,
@@ -89,7 +89,7 @@ create table poi (
 );
 
 create table category (
-       cat_id          int PRIMARY KEY,
+       cat_id          INTEGER PRIMARY KEY AUTOINCREMENT,
        pcat_id         int,
        priority        int not null default 2,
        label           text,