Skip to content

Commit

Permalink
test without jdbcType for CLOB
Browse files Browse the repository at this point in the history
  • Loading branch information
sahibamittal committed Feb 16, 2024
1 parent 07f0157 commit 70319a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/dependencytrack/model/Cwe.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Cwe implements Serializable {
private int cweId;

@Persistent
@Column(name = "NAME", jdbcType = "CLOB", allowsNull = "false")
@Column(name = "NAME", allowsNull = "false")
@NotNull
@JsonDeserialize(using = TrimmedStringDeserializer.class)
@Pattern(regexp = RegexSequence.Definition.PRINTABLE_CHARS, message = "The name may only contain printable characters")
Expand Down

0 comments on commit 70319a1

Please sign in to comment.