What is the max column length of TEXT field in Hibernate? – Postgresql
I have a text field in my Hibernate entity as shown below: @Column(nullable = false, columnDefinition = "TEXT") private String content; So, what is the default and suggested length for this field (it is a content of a blog)? And…