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/applications.sql

14 lines
476 B
MySQL
Raw Normal View History

create type application_type as enum ('Native', 'SPA', 'Traditional');
create table applications (
id varchar(21) not null,
name varchar(256) not null,
secret varchar(64) not null,
description text,
type application_type not null,
oidc_client_metadata jsonb /* @use OidcClientMetadata */ not null,
custom_client_metadata jsonb /* @use CustomClientMetadata */ not null default '{}'::jsonb,
2021-08-18 03:36:52 -05:00
created_at timestamptz not null default(now()),
primary key (id)
);