10 lines
186 B
SQL
10 lines
186 B
SQL
-- [JUNCTIONS]
|
|
|
|
create table junctions
|
|
(
|
|
id varchar(32) primary key references _node(id)
|
|
, elevation numeric not null
|
|
, demand numeric
|
|
, pattern varchar(32) references _pattern(id)
|
|
);
|