RED-2664 SQL Exception 'value too long for type character varying(255)' only for resizing Values

- increase value size to maximum for varchar2 4000
This commit is contained in:
devplant 2021-11-16 10:49:25 +02:00
parent 10a71f053c
commit c8afc5f735

View File

@ -44,7 +44,7 @@ public class ManualResizeRedactionEntity {
private OffsetDateTime softDeletedTime;
@Column
private int page;
@Column
@Column(length = 4000)
private String value;
@ManyToOne