Add reaction api and test

This commit is contained in:
WQY\qiong
2022-11-12 10:00:08 +08:00
parent 3d6d8995ef
commit 1631592b0a
6 changed files with 437 additions and 3 deletions

View File

@@ -2,10 +2,18 @@
create table reactions_global
(
key text not null
, value numeric not null
_no integer primary key
, order_bulk numeric
, order_wall numeric
, order_tank numeric
, global_bulk numeric
, global_wall numeric
, limiting_potential numeric
, roughness_correlation numeric
);
insert into reactions_global values (0, null, null, null, null, null, null, null);
create table reactions_pipe_bulk
(
pipe varchar(32) primary key references pipes(id) not null