I have a table Campaign_actions which has a column terms with type text.
Today I noticed that all text in the column terms are changed to numbers:

I have a table Campaign_actions which has a column terms with type text.
Today I noticed that all text in the column terms are changed to numbers:

If you use hibernate annotations in java, you need to specify type of Lob. Example:
    @Lob
    @Type(type = "org.hibernate.type.TextType")
    String largeText;