mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
f85b922836
* feat(core): add sign-in-experience-setting table add sign-in-experience-setting table * fix(core): fix typo fix typo * refactor: rename sign-in-experience table name rename sign-in-experience table name * fix(core): cr fix update sign_in_method schema update sign_in_method schema * fix(schema): cr fix remove signinMethodsMetadata jsonb field
10 lines
417 B
SQL
10 lines
417 B
SQL
create table sign_in_experiences (
|
|
id varchar(128) not null,
|
|
company_info jsonb /* @use CompanyInfo */ not null,
|
|
branding jsonb /* @use Branding */ not null,
|
|
terms_of_use jsonb /* @use TermsOfUse */ not null,
|
|
forget_password_enabled boolean not null default(true),
|
|
localization jsonb /* @use Localization */ not null,
|
|
sign_in_methods jsonb /* @use SignInMethodSettings */ not null,
|
|
primary key (id)
|
|
)
|