Locally I use mysql, so when I use
@Column(columnDefinition = \"TEXT\")
Unfortunately application have to run at different databases too, I\'
I had the same problem and it was resolved only adding a parameter to MySQL Url on application.properties:
spring.datasource.url=jdbc:mysql://localhost:3306/database?jdbcCompliantTruncation=false
The parameter is jdbcCompliantTruncation=false
Looks like a workaround but only it works...