Skip to content

Commit

Permalink
TRUNK-6293 - Correct patient identifier description length (#4901)
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton committed Jan 29, 2025
1 parent 5be0309 commit 8a49e48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/src/main/java/org/openmrs/PatientIdentifierType.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
@Table(name = "patient_identifier_type")
@Audited
@AttributeOverrides({
@AttributeOverride(name = "name", column = @Column(name = "name", nullable = false, length = 50))
@AttributeOverride(name = "name", column = @Column(name = "name", nullable = false, length = 50)),
@AttributeOverride(name = "description", column = @Column(name = "description", length = 65535))
})
public class PatientIdentifierType extends BaseChangeableOpenmrsMetadata {

Expand Down

0 comments on commit 8a49e48

Please sign in to comment.