2022-01-24 22:48:47 -05:00
|
|
|
create table sign_in_experiences (
|
|
|
|
id varchar(128) not null,
|
2022-03-15 03:46:23 -05:00
|
|
|
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,
|
2022-01-24 22:48:47 -05:00
|
|
|
primary key (id)
|
2022-03-15 03:46:23 -05:00
|
|
|
);
|