diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-02-22 09:56:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 09:56:07 -0800 |
commit | 5363b99a75820661b5c5318bc633202be4c352d8 (patch) | |
tree | d64872e29f019bbb4d7220b8a8ea4d4885fae84d /schema/changelog-4.16.xml | |
parent | 73df090369b377dc55d77c6ada92722975d8fe99 (diff) | |
parent | 82305faa20e383ea569bc5be17eb8cd74c6131f1 (diff) | |
download | trackermap-server-5363b99a75820661b5c5318bc633202be4c352d8.tar.gz trackermap-server-5363b99a75820661b5c5318bc633202be4c352d8.tar.bz2 trackermap-server-5363b99a75820661b5c5318bc633202be4c352d8.zip |
Merge pull request #4811 from grmt/bugfix/postgres-orders-columns-lowercase
Fix postgres orders columns lowercase
Diffstat (limited to 'schema/changelog-4.16.xml')
-rw-r--r-- | schema/changelog-4.16.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/schema/changelog-4.16.xml b/schema/changelog-4.16.xml index 0b6493f03..adf8d4fc6 100644 --- a/schema/changelog-4.16.xml +++ b/schema/changelog-4.16.xml @@ -16,6 +16,12 @@ <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="toaddresstmp" newColumnName="toaddress" /> + <renameColumn tableName="tc_orders" oldColumnName="fromaddresstmp" newColumnName="fromaddress" /> + </changeSet> </databaseChangeLog> |