Files
TJWaterServer/script/sql/create/2.junctions.sql
2022-10-09 11:06:19 +08:00

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)
);