Skip to content

Commit

Permalink
chore: update secret table columns type
Browse files Browse the repository at this point in the history
  • Loading branch information
darcyYe committed Nov 21, 2024
1 parent 9bed048 commit 4de3026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const alteration: AlterationScript = {
references tenants (id) on update cascade on delete cascade,
application_id varchar(21) not null
references applications (id) on update cascade on delete cascade,
private_key varchar not null,
certificate varchar not null,
private_key text not null,
certificate text not null,
created_at timestamptz not null default now(),
expires_at timestamptz not null,
active boolean not null,
Expand Down
4 changes: 2 additions & 2 deletions packages/schemas/tables/saml_application_secrets.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ create table saml_application_secrets (
references tenants (id) on update cascade on delete cascade,
application_id varchar(21) not null
references applications (id) on update cascade on delete cascade,
private_key varchar not null,
certificate varchar not null,
private_key text not null,
certificate text not null,
created_at timestamptz not null default now(),
expires_at timestamptz not null,
active boolean not null,
Expand Down

0 comments on commit 4de3026

Please sign in to comment.