Skip to content

Commit

Permalink
use correct column in xml
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryLitvintsev committed Mar 12, 2024
1 parent 81724b9 commit b9d8a03
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@
<columnExists tableName="request_target" columnName="path"/>
</and>
</preConditions>
<modifyDataType tableName="request_target" columnName="pid" newDataType="varchar(2048)"/>
<modifyDataType tableName="request_target" columnName="path" newDataType="varchar(2048)"/>
<rollback>
<preConditions onFail="MARK_RAN">
<and>
<columnExists tableName="request_target" columnName="path"/>
</and>
</preConditions>
<modifyDataType tableName="request_target" columnName="pid" newDataType="varchar(256)"/>
<modifyDataType tableName="request_target" columnName="path" newDataType="varchar(256)"/>
</rollback>
</changeSet>

Expand Down

0 comments on commit b9d8a03

Please sign in to comment.