From 8c8674e4ece246f737047537bbb62e5182f4cdd0 Mon Sep 17 00:00:00 2001 From: "WQY\\qiong" Date: Sat, 22 Oct 2022 11:01:01 +0800 Subject: [PATCH] Refine reaction schema --- script/sql/create/19.reactions.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/sql/create/19.reactions.sql b/script/sql/create/19.reactions.sql index ff05a7e..d22cb1b 100644 --- a/script/sql/create/19.reactions.sql +++ b/script/sql/create/19.reactions.sql @@ -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 (