Hi Team,
I found the Studio will generate two changesets for change of column length , they are dropColumn
and addColumn
,see following:
<changeSet id="1" author="skdatta">
<dropColumn columnName="FILE_REF" tableName="SKDATTA_ATTACHMENT"/>
</changeSet>
<changeSet id="2" author="skdatta">
<addColumn tableName="SKDATTA_ATTACHMENT">
<column name="FILE_REF" type="VARCHAR(2000)"/>
</addColumn>
</changeSet>
If apply the changelog ,the data of the column will lost.
Is it expected behavior?
Regards,
Ray