Refine reaction schema

This commit is contained in:
WQY\qiong
2022-10-22 11:01:01 +08:00
parent b6496348bf
commit 8c8674e4ec

View File

@@ -1,6 +1,6 @@
-- [REACTIONS]
create type reactions_order_param as enum ('bulk', 'wall', 'tank');
create type reactions_order_param as enum ('BULK', 'WALL', 'TANK');
create table reactions_order
(
@@ -8,7 +8,7 @@ create table reactions_order
, value numeric not null
);
create type reactions_global_param as enum ('bulk', 'wall');
create type reactions_global_param as enum ('BULK', 'WALL');
create table reactions_global
(
@@ -16,7 +16,7 @@ create table reactions_global
, value numeric not null
);
create type reactions_pipe_param as enum ('bulk', 'wall');
create type reactions_pipe_param as enum ('BULK', 'WALL');
create table reactions_pipe
(