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 ('其他');