mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
11 lines
417 B
MySQL
11 lines
417 B
MySQL
|
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)
|
||
|
)
|