mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
15 lines
634 B
MySQL
15 lines
634 B
MySQL
|
/* init_order = 3 */
|
||
|
|
||
|
/** The resource scopes (permissions) assigned to an application's consent request. */
|
||
|
create table application_user_consent_resource_scopes (
|
||
|
tenant_id varchar(21) not null
|
||
|
references tenants (id) on update cascade on delete cascade,
|
||
|
/** The globally unique identifier of the application. */
|
||
|
application_id varchar(21) not null
|
||
|
references applications (id) on update cascade on delete cascade,
|
||
|
/** The globally unique identifier of the resource scope. */
|
||
|
scope_id varchar(21) not null
|
||
|
references scopes (id) on update cascade on delete cascade,
|
||
|
primary key (application_id, scope_id)
|
||
|
);
|