mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
a93a39aa1b
* feat(core,schemas): add isThirdParty column to the applications table add isThirdParty column to the applications table * refactor(core): group the application routes under applications directory (#5091) * refactor(core): group the application routes under applications directory group the application routes under applications directory * refactor(core,schemas): refactor the application api guard refactor the application api guard * fix(schemas): fix application patch guard fix application patch guard * fix(test): fix ut fix ut
24 lines
821 B
SQL
24 lines
821 B
SQL
/* init_order = 1 */
|
|
|
|
create type application_type as enum ('Native', 'SPA', 'Traditional', 'MachineToMachine');
|
|
|
|
create table applications (
|
|
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,
|
|
created_at timestamptz not null default(now()),
|
|
primary key (id)
|
|
);
|
|
|
|
create index applications__id
|
|
on applications (tenant_id, id);
|
|
|
|
create index applications__is_third_party
|
|
on applications (tenant_id, is_third_party);
|