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

11 lines
417 B
MySQL
Raw Normal View History

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)
)