Page 1 of 1

Increase TextItem limit character

Posted: Tue Sep 10, 2013 7:48 am
by denis
Hi all,

I'm using BLC 2.2.1-SNAPSHOT and field description (for product or category) on admin is limited to 255 characters. How to remove this limit ?

Is there a way to override annotations of SkuImpl in MySkuImpl, something like that :

Code: Select all

    @Lob
    @Type(type = "org.hibernate.type.StringClobType")
    @Column(name = "DESCRIPTION", length = Integer.MAX_VALUE - 1)
    protected String Description;


Thanks in advance