mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
054b0f7b6a
* feat(core,schema,connectors): remove target,platform form connector schema and add id to metadata * feat(schema,ui,console): unwrap ConnectorMetadata in ConnectorDTO * feat(schema,ui,console): connector id use dashline instead of underscore * feat(connector-alipay*): fix typos * feat(connector-alipay*): remove unnecessary type declaration
7 lines
240 B
SQL
7 lines
240 B
SQL
create table connectors (
|
|
id varchar(128) not null,
|
|
enabled boolean not null default FALSE,
|
|
config jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
|
|
created_at timestamptz not null default(now()),
|
|
primary key (id)
|
|
);
|