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