Skip to content

Commit

Permalink
Update Draft Claim
Browse files Browse the repository at this point in the history
  • Loading branch information
tdethier committed May 16, 2024
1 parent 5cf3764 commit 0f6f63f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion medical/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
from medical.services import set_item_or_service_deleted


DIAGNOSIS_CODE_LENGTH = 6


class Diagnosis(core_models.VersionedModel):
id = models.AutoField(db_column='ICDID', primary_key=True)
code = models.CharField(db_column='ICDCode', max_length=6)
code = models.CharField(db_column='ICDCode', max_length=DIAGNOSIS_CODE_LENGTH)
name = models.CharField(db_column='ICDName', max_length=255)

audit_user_id = models.IntegerField(db_column='AuditUserID')
Expand Down

0 comments on commit 0f6f63f

Please sign in to comment.