Skip to content

Commit

Permalink
Add authorization_uri to the authorization code table
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Aug 30, 2024
1 parent a4e5704 commit 1dba8a8
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,15 @@
</addColumn>
</changeSet>

<changeSet author="Angel Montenegro" id="ADD-AUTHORIZATION-URI-TO-oauth2_authoriziation_code_detail">
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="oauth2_authoriziation_code_detail" columnName="authorization_uri"/>
</not>
</preConditions>
<addColumn tableName="oauth2_authoriziation_code_detail">
<column name="authorization_uri" type="VARCHAR(2500)" />
</addColumn>
</changeSet>

</databaseChangeLog>

0 comments on commit 1dba8a8

Please sign in to comment.