From 19462115402a26bfaa262c5fe3f5fb103f2afe75 Mon Sep 17 00:00:00 2001 From: zhaobing Date: Mon, 3 Jul 2023 18:16:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/0.28/schema/01create_sysyem_problem.sql | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/script/0.28/schema/01create_sysyem_problem.sql b/script/0.28/schema/01create_sysyem_problem.sql index 02c92cd..af601fd 100644 --- a/script/0.28/schema/01create_sysyem_problem.sql +++ b/script/0.28/schema/01create_sysyem_problem.sql @@ -4,12 +4,12 @@ create table public.system_problem( ); comment on column public.system_problem.type is '问题类型:数据库异常、es异常、kafka异常、服务器异常、应用异常、其他'; -insert into system_problem (id, type)values ('es异常'); -insert into system_problem (id, type)values ('数据库异常'); -insert into system_problem (id, type)values ('应用异常'); -insert into system_problem (id, type)values ('kafka异常'); -insert into system_problem (id, type)values ('服务器异常'); -insert into system_problem (id, type)values ('DAC进程异常'); -insert into system_problem (id, type)values ('K8S集群异常'); -insert into system_problem (id, type)values ('redis服务异常'); -insert into system_problem (id, type)values ('其他'); +insert into system_problem ( type)values ('es异常'); +insert into system_problem (type)values ('数据库异常'); +insert into system_problem (type)values ('应用异常'); +insert into system_problem (type)values ('kafka异常'); +insert into system_problem (type)values ('服务器异常'); +insert into system_problem (type)values ('DAC进程异常'); +insert into system_problem (type)values ('K8S集群异常'); +insert into system_problem (type)values ('redis服务异常'); +insert into system_problem (type)values ('其他');