mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
b9f9847ec0
* feat(schema): update appliaction db update application db * ci(schema): cr fix application table schema typo fix application table schema typo
13 lines
454 B
SQL
13 lines
454 B
SQL
create type application_type as enum ('Native', 'SPA', 'Traditional');
|
|
|
|
create table applications (
|
|
id varchar(128) not null,
|
|
name varchar(256) not null,
|
|
description text,
|
|
type application_type not null,
|
|
oidc_client_metadata jsonb /* @use OidcClientMetadata */ not null,
|
|
id_token_ttl bigint not null default(86400),
|
|
refresh_token_ttl bigint not null default(2592000),
|
|
created_at timestamptz not null default(now()),
|
|
primary key (id)
|
|
);
|