Skip to content

Commit

Permalink
Increase refresh token size in DB needed for Checkin migration (#435)
Browse files Browse the repository at this point in the history
* Increase refresh token size in DB needed for Checkin migration

* Fix check style error
  • Loading branch information
maricaantonacci committed Feb 25, 2023
1 parent 1ee23e1 commit 779f54d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
databaseChangeLog:
- changeSet:
id: 0011_orchestrator-refresh-token-size-2501
author: m.antonacci
comment: >
Increase size for oidc_refresh_token.refresh_token_value to accomodate larger tokens issued by Keycloack-based EGI Checkin
changes:
- modifyDataType:
columnName: refresh_token_value
newDataType: VARCHAR(1024)
tableName: oidc_refresh_token
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ databaseChangeLog:
- include:
- file: 0010_orchestrator-deployment-usergroup-2401.yaml
relativeToChangelogFile: true
- include:
- file: 0011_orchestrator-refresh-token-size-2501.yaml
relativeToChangelogFile: true

0 comments on commit 779f54d

Please sign in to comment.