Bug #1528: Change datatype for field TaskElement.notes to TEXT, which has no lenght limit.

FEA: ItEr76S04BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2012-08-09 19:58:30 +02:00
parent 512b14a480
commit 89e960a4f6
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet id="change-column-notes-in-task_element-to-text"
author="jaragunde" dbms="postgresql">
<comment>Change column notes in task_element to TEXT</comment>
<modifyDataType tableName="task_element" columnName="notes" newDataType="TEXT" />
</changeSet>
</databaseChangeLog>

View file

@ -10,4 +10,5 @@
<include file="src/main/resources/db.changelog-1.0.xml"/>
<include file="src/main/resources/db.changelog-1.1.xml"/>
<include file="src/main/resources/db.changelog-1.2.xml"/>
<include file="src/main/resources/db.changelog-1.3.xml"/>
</databaseChangeLog>