[
https://issues.apache.org/jira/browse/FINERACT-2774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18105982#comment-18105982
]
Sonigra Bhavya Hemendrabhai edited comment on FINERACT-2774 at 8/19/26 4:31 PM:
--------------------------------------------------------------------------------
[~victorromero] I can take this on. I'll prepare the Liquibase script to change
the column to TEXT and ensure the JPA and API layers are updated to support the
new length.
was (Author: JIRAUSER314311):
@IOhacker I can take this on. I'll prepare the Liquibase script to change the
column to TEXT and ensure the JPA and API layers are updated to support the new
length.
> Increase the lenght of a note
> -----------------------------
>
> Key: FINERACT-2774
> URL: https://issues.apache.org/jira/browse/FINERACT-2774
> Project: Apache Fineract
> Issue Type: Bug
> Reporter: Victor Romero
> Priority: Minor
>
> Increase the lenght of a note, in the table m_note the field note is 1000
> chars lenght which is not enought to add notes for business users. So then it
> is requested to convert the type to text.
>
> It must include a liquibas script for doing the type convertion
> <?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-latest.xsd">
> <changeSet id="1" author="fineract>
> <modifyDataType
> tableName="m_note"
> columnName="note"
> newDataType="TEXT"/>
> </changeSet>
> </databaseChangeLog>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)