I have a problem where the data in a particular column is stored as lowercase (This problem occurs only in MSSQL).I had thought of writing a change set to force uppercase in that particular column, but I am not sure on how to go about it
Try the following changeset:
<changeSet author="mark" id="2013-07-15-01">
<update tableName="MyTable">
<column name="MyColumn" valueComputed="upper(MyColumn)"/>
</update>
</changeSet>
Documented here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With