In my JDL file I have a file with the following contents
entity Application {
...
text String,
...
}
When the XML file is generated for liquibase the MySQL data type is set to varchar(255)
by default, I want to have text
or mediumtext
as the type instead.
<column name="text" type="text">
<constraints nullable="true" />
</column>
How can I accomplish this?