From 09703896f317ac5601a9f14d4430fc1d314977ec Mon Sep 17 00:00:00 2001 From: Darcy Ye Date: Wed, 6 Apr 2022 15:34:18 +0800 Subject: [PATCH] fix(core): fix default enable value of new connectors (#500) --- packages/schemas/tables/connectors.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schemas/tables/connectors.sql b/packages/schemas/tables/connectors.sql index 114549ac3..b8ec238a4 100644 --- a/packages/schemas/tables/connectors.sql +++ b/packages/schemas/tables/connectors.sql @@ -3,7 +3,7 @@ create type connector_type as enum ('Email', 'SMS', 'Social'); create table connectors ( id varchar(128) not null, type connector_type not null, - enabled boolean not null default TRUE, + enabled boolean not null default FALSE, config jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb, created_at timestamptz not null default(now()), primary key (id)