Bug #1528: Fix field TaskElement.notes in MySQL.

FEA: ItEr76S04BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2012-08-21 10:22:21 +02:00
parent ad68bc0ff8
commit c064949e08
2 changed files with 7 additions and 1 deletions

View file

@ -10,4 +10,10 @@
<modifyDataType tableName="task_element" columnName="notes" newDataType="TEXT" /> <modifyDataType tableName="task_element" columnName="notes" newDataType="TEXT" />
</changeSet> </changeSet>
<changeSet id="change-column-notes-in-task_element-to-text-in-mysql"
author="jaragunde" dbms="mysql">
<comment>Change column notes in task_element to TEXT in MySQL.</comment>
<sql>ALTER TABLE task_element MODIFY notes TEXT</sql>
</changeSet>
</databaseChangeLog> </databaseChangeLog>

View file

@ -10,7 +10,7 @@
</id> </id>
<version name="version" access="property" type="long" /> <version name="version" access="property" type="long" />
<property name="name" /> <property name="name" />
<property name="notes"/> <property name="notes" type="text" />
<component name="startDate" <component name="startDate"
class="org.libreplan.business.workingday.IntraDayDate"> class="org.libreplan.business.workingday.IntraDayDate">
<property name="date" column="start_date" not-null="true" <property name="date" column="start_date" not-null="true"