Replace all "numeric" with "float8"

This commit is contained in:
WQY\qiong
2023-05-05 21:18:56 +08:00
parent 62b086d939
commit adeb9dd031
21 changed files with 37 additions and 37 deletions

View File

@@ -19,7 +19,7 @@ insert into reactions (key, value) values
create table reactions_pipe_bulk
(
pipe varchar(32) primary key references pipes(id) not null
, value numeric not null
, value float8 not null
);
-- delete when delete pipe
@@ -27,7 +27,7 @@ create table reactions_pipe_bulk
create table reactions_pipe_wall
(
pipe varchar(32) primary key references pipes(id) not null
, value numeric not null
, value float8 not null
);
-- delete when delete pipe
@@ -35,7 +35,7 @@ create table reactions_pipe_wall
create table reactions_tank
(
tank varchar(32) primary key references tanks(id) not null
, value numeric not null
, value float8 not null
);
-- delete when delete tank