fix: update postgresql init sql (#2784)
This commit is contained in:
parent
ca712f62a4
commit
fbf1d68b84
|
@ -956,7 +956,7 @@ CREATE TABLE notify_rule (
|
|||
id bigserial PRIMARY KEY,
|
||||
name varchar(255) NOT NULL,
|
||||
description text,
|
||||
enable smallint NOT NULL DEFAULT 0,
|
||||
enable boolean DEFAULT false,
|
||||
user_group_ids varchar(255) NOT NULL DEFAULT '',
|
||||
notify_configs text,
|
||||
pipeline_configs text,
|
||||
|
@ -971,7 +971,7 @@ CREATE TABLE notify_channel (
|
|||
name varchar(255) NOT NULL,
|
||||
ident varchar(255) NOT NULL,
|
||||
description text,
|
||||
enable smallint NOT NULL DEFAULT 0,
|
||||
enable boolean DEFAULT false,
|
||||
param_config text,
|
||||
request_type varchar(50) NOT NULL,
|
||||
request_config text,
|
||||
|
|
Loading…
Reference in New Issue