8 lines
122 B
SQL
8 lines
122 B
SQL
-- [JUNCTIONS]
|
|
|
|
create table junctions
|
|
(
|
|
id varchar(32) primary key references _node(id)
|
|
, elevation float8 not null
|
|
);
|