9 lines
166 B
SQL
9 lines
166 B
SQL
-- [RESERVOIRS]
|
|
|
|
create table reservoirs
|
|
(
|
|
id varchar(32) primary key references _node(id)
|
|
, head numeric not null
|
|
, pattern varchar(32) references _pattern(id)
|
|
);
|