0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/tables/sign_in_experiences.sql
simeng-li f85b922836
feat(core): add sign-in-experiences table (#191)
* 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
2022-01-25 11:48:47 +08:00

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