diff --git a/libreplan-business/src/main/resources/db.changelog-1.2.xml b/libreplan-business/src/main/resources/db.changelog-1.2.xml index 727dcc43c..52b58fdc1 100644 --- a/libreplan-business/src/main/resources/db.changelog-1.2.xml +++ b/libreplan-business/src/main/resources/db.changelog-1.2.xml @@ -58,16 +58,30 @@ columnDataType="BOOLEAN" /> - + Change column description in order_element to TEXT - + Change column description in order_element_template to TEXT + + + Change column description in order_element and + order_element_template to TEXT in MySQL. + Because of using modifyDataType convert the column in LONGTEXT and + this is causing some problems with Hibernate mapping. + + ALTER TABLE order_element MODIFY description TEXT + ALTER TABLE order_element_template MODIFY description TEXT + + add budget column to order_line