We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37bfe72 commit 0e44fa3Copy full SHA for 0e44fa3
api/src/main/java/org/openmrs/ConceptStopWord.java
@@ -42,10 +42,10 @@ public class ConceptStopWord extends BaseOpenmrsObject {
42
@Column(name = "concept_stop_word_id", nullable = false)
43
private Integer conceptStopWordId;
44
45
- @Column(name = "word", nullable = false)
+ @Column(name = "word", nullable = false, length = 50)
46
private String value;
47
48
- @Column(name = "locale", nullable = false)
+ @Column(name = "locale", nullable = false, length = 20)
49
private Locale locale;
50
51
// Constructors
0 commit comments