0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/schemas/tables/sign_in_experiences.sql
2022-04-18 15:27:58 +08:00

9 lines
470 B
SQL

create table sign_in_experiences (
id varchar(21) not null,
branding jsonb /* @use Branding */ not null default '{}'::jsonb,
language_info jsonb /* @use LanguageInfo */ not null default '{}'::jsonb,
terms_of_use jsonb /* @use TermsOfUse */ not null default '{}'::jsonb,
sign_in_methods jsonb /* @use SignInMethods */ not null default '{}'::jsonb,
social_sign_in_connector_ids jsonb /* @use ConnectorIds */ not null default '[]'::jsonb,
primary key (id)
);