2024-11-17 22:50:21 -05:00
|
|
|
/* init_order = 2 */
|
|
|
|
|
|
|
|
create table saml_application_secrets (
|
|
|
|
id varchar(21) not null,
|
|
|
|
tenant_id varchar(21) not null
|
|
|
|
references tenants (id) on update cascade on delete cascade,
|
|
|
|
application_id varchar(21) not null
|
|
|
|
references applications (id) on update cascade on delete cascade,
|
2024-11-20 02:42:29 -05:00
|
|
|
private_key text not null,
|
|
|
|
certificate text not null,
|
2024-11-17 22:50:21 -05:00
|
|
|
created_at timestamptz not null default now(),
|
|
|
|
expires_at timestamptz not null,
|
|
|
|
active boolean not null,
|
2024-11-19 01:06:28 -05:00
|
|
|
primary key (tenant_id, application_id, id),
|
2024-11-29 01:11:46 -05:00
|
|
|
constraint saml_application_secrets__application_type
|
2024-11-17 22:50:21 -05:00
|
|
|
check (check_application_type(application_id, 'SAML'))
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Only one active secret per application
|
|
|
|
create unique index saml_application_secrets__unique_active_secret
|
2024-11-19 01:06:28 -05:00
|
|
|
on saml_application_secrets (tenant_id, application_id, active)
|
2024-11-17 22:50:21 -05:00
|
|
|
where active;
|