mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-13 00:33:02 +03:00
9 lines
252 B
SQL
9 lines
252 B
SQL
CREATE TABLE oidc_clients_allowed_user_groups
|
|
(
|
|
user_group_id UUID NOT NULL REFERENCES user_groups ON DELETE CASCADE,
|
|
oidc_client_id UUID NOT NULL REFERENCES oidc_clients ON DELETE CASCADE,
|
|
PRIMARY KEY (oidc_client_id, user_group_id)
|
|
);
|
|
|
|
|