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:
parent
10a71f053c
commit
c8afc5f735
@ -44,7 +44,7 @@ public class ManualResizeRedactionEntity {
|
||||
private OffsetDateTime softDeletedTime;
|
||||
@Column
|
||||
private int page;
|
||||
@Column
|
||||
@Column(length = 4000)
|
||||
private String value;
|
||||
|
||||
@ManyToOne
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user