Skip to content

Commit

Permalink
Do not run changeset if comlumn already exists
Browse files Browse the repository at this point in the history
Closes keycloak#35290

Signed-off-by: Pedro Igor <[email protected]>
  • Loading branch information
pedroigor authored and ahus1 committed Dec 3, 2024
1 parent 590944b commit 7a35d49
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
</changeSet>

<changeSet author="keycloak" id="26.1.0-34013">
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="ADMIN_EVENT_ENTITY" columnName="DETAILS_JSON" />
</not>
</preConditions>
<addColumn tableName="ADMIN_EVENT_ENTITY">
<column name="DETAILS_JSON" type="NCLOB" />
</addColumn>
Expand Down

0 comments on commit 7a35d49

Please sign in to comment.