Bug #1398: Fix problem with long descriptions in templates

Change database column type to TEXT.

This change was pending to be done when we fixed bug #1362 (commit
3fcc7399d9).

FEA: ItEr76S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-03-14 14:59:25 +01:00
parent c5e6bbe8c4
commit a42357f67e

View file

@ -63,4 +63,9 @@
<modifyDataType tableName="order_element" columnName="description" newDataType="TEXT" />
</changeSet>
<changeSet id="change-column-description-in-order_element_template-to-text" author="mrego">
<comment>Change column description in order_element_template to TEXT</comment>
<modifyDataType tableName="order_element_template" columnName="description" newDataType="TEXT" />
</changeSet>
</databaseChangeLog>