Skip to content

Commit

Permalink
Fix column rename issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Apr 8, 2022
1 parent b40358c commit 3241b83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schema/changelog-4.16.xml
Expand Up @@ -16,11 +16,11 @@
<column name="disablereports" type="BOOLEAN" defaultValueBoolean="false" />
</addColumn>

<renameColumn tableName="tc_orders" oldColumnName="toAddress" newColumnName="toaddresstmp" />
<renameColumn tableName="tc_orders" oldColumnName="fromAddress" newColumnName="fromaddresstmp" />
<renameColumn tableName="tc_orders" oldColumnName="toAddress" newColumnName="toaddresstmp" columnDataType="VARCHAR(512)" />
<renameColumn tableName="tc_orders" oldColumnName="fromAddress" newColumnName="fromaddresstmp" columnDataType="VARCHAR(512)" />

<renameColumn tableName="tc_orders" oldColumnName="toaddresstmp" newColumnName="toaddress" />
<renameColumn tableName="tc_orders" oldColumnName="fromaddresstmp" newColumnName="fromaddress" />
<renameColumn tableName="tc_orders" oldColumnName="toaddresstmp" newColumnName="toaddress" columnDataType="VARCHAR(512)" />
<renameColumn tableName="tc_orders" oldColumnName="fromaddresstmp" newColumnName="fromaddress" columnDataType="VARCHAR(512)" />

</changeSet>

Expand Down

0 comments on commit 3241b83

Please sign in to comment.