Bug #1528: Change datatype for field TaskElement.notes to TEXT, which has no lenght limit.
FEA: ItEr76S04BugFixing
This commit is contained in:
parent
512b14a480
commit
89e960a4f6
2 changed files with 14 additions and 0 deletions
13
libreplan-business/src/main/resources/db.changelog-1.3.xml
Normal file
13
libreplan-business/src/main/resources/db.changelog-1.3.xml
Normal 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>
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue