Skip to content

Commit

Permalink
Storing the spring security request id, still not sure why we need it…
Browse files Browse the repository at this point in the history
… and how we will use it
  • Loading branch information
amontenegro committed Aug 31, 2024
1 parent de445a1 commit ec09931
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,15 @@
</addColumn>
</changeSet>

<changeSet author="Angel Montenegro" id="ADD-SPRING-AUHT-CODE-REQ-ID-TO-oauth2_authoriziation_code_detail">
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="oauth2_authoriziation_code_detail" columnName="spring_authorization_code_request_id"/>
</not>
</preConditions>
<addColumn tableName="oauth2_authoriziation_code_detail">
<column name="spring_authorization_code_request_id" type="VARCHAR(255)" />
</addColumn>
</changeSet>

</databaseChangeLog>

0 comments on commit ec09931

Please sign in to comment.