Setting of valve [GPV] should be string

This commit is contained in:
WQY\qiong
2023-03-01 23:20:04 +08:00
parent 628258ef52
commit 3665e15c92
3 changed files with 21 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ create table valves
, node2 varchar(32) references _node(id) not null
, diameter numeric not null
, type valves_type not null
, setting numeric not null
, setting text not null
, minor_loss numeric not null
);