Skip to content

Commit

Permalink
Add the authorization state attribute field
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Sep 2, 2024
1 parent bad7061 commit 538e0ba
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@
</addColumn>
</changeSet>

<changeSet author="Angel Montenegro" id="ADD-AUTHORIZATION-STATE-ATTRIBUTE">
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="oauth2_authoriziation_code_detail" columnName="authorization_state_attribute"/>
</not>
</preConditions>
<addColumn tableName="oauth2_authoriziation_code_detail">
<column name="authorization_state_attribute" type="VARCHAR(500)" />
</addColumn>
</changeSet>

<changeSet author="Angel Montenegro" id="ADD-AUTHORIZATION-URI">
<preConditions onFail="MARK_RAN">
<not>
Expand Down

0 comments on commit 538e0ba

Please sign in to comment.