mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
127664a62f
* feat(core,console): social connector targets * fix: add test
9 lines
398 B
SQL
9 lines
398 B
SQL
create table sign_in_experiences (
|
|
id varchar(21) not null,
|
|
branding jsonb /* @use Branding */ not null,
|
|
language_info jsonb /* @use LanguageInfo */ not null,
|
|
terms_of_use jsonb /* @use TermsOfUse */ not null,
|
|
sign_in_methods jsonb /* @use SignInMethods */ not null,
|
|
social_sign_in_connector_targets jsonb /* @use ConnectorTargets */ not null default '[]'::jsonb,
|
|
primary key (id)
|
|
);
|