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

25 lines
821 B
MySQL
Raw Normal View History

2023-01-19 07:27:01 -05:00
/* init_order = 1 */
2022-09-21 00:06:56 -05:00
create type application_type as enum ('Native', 'SPA', 'Traditional', 'MachineToMachine');
create table applications (
2023-01-19 07:27:01 -05:00
tenant_id varchar(21) not null
references tenants (id) on update cascade on delete cascade,
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,
is_third_party boolean not null default false,
2021-08-18 03:36:52 -05:00
created_at timestamptz not null default(now()),
primary key (id)
);
2023-01-19 07:27:01 -05:00
create index applications__id
on applications (tenant_id, id);
create index applications__is_third_party
on applications (tenant_id, is_third_party);