mirror of
https://github.com/logto-io/logto.git
synced 2025-03-24 22:41:28 -05:00
fix(core): fix default enable value of new connectors (#500)
This commit is contained in:
parent
6f85098853
commit
09703896f3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue