Skip to content

Commit 0e44fa3

Browse files
committed
TRUNK-5911: Add missing length attributes for ConceptStopWord fields
1 parent 37bfe72 commit 0e44fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/src/main/java/org/openmrs/ConceptStopWord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ public class ConceptStopWord extends BaseOpenmrsObject {
4242
@Column(name = "concept_stop_word_id", nullable = false)
4343
private Integer conceptStopWordId;
4444

45-
@Column(name = "word", nullable = false)
45+
@Column(name = "word", nullable = false, length = 50)
4646
private String value;
4747

48-
@Column(name = "locale", nullable = false)
48+
@Column(name = "locale", nullable = false, length = 20)
4949
private Locale locale;
5050

5151
// Constructors

0 commit comments

Comments
 (0)