13 lines
255 B
SQL
13 lines
255 B
SQL
|
|
create table cities (
|
|
rectype int not null,
|
|
ctype int not null,
|
|
regiokey text not null primary key,
|
|
ckey text not null,
|
|
name text not null,
|
|
area decimal,
|
|
inhabitants int,
|
|
zipcode text,
|
|
long decimal,
|
|
lat decimal
|
|
);
|