Skip to content

Commit

Permalink
This should finally fix the patient history issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Romulus10 committed Nov 5, 2021
1 parent 5077e1e commit 363a535
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions main/migrations/0008_alter_patientencounter_patient_history.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.9 on 2021-11-05 01:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('main', '0007_auto_20211103_0955'),
]

operations = [
migrations.AlterField(
model_name='patientencounter',
name='patient_history',
field=models.CharField(blank=True, max_length=1000, null=True),
),
]
2 changes: 1 addition & 1 deletion main/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ class PatientEncounter(models.Model):
alcohol = models.BooleanField(default=False)

chief_complaint = models.ManyToManyField(ChiefComplaint, blank=True)
patient_history = models.CharField(max_length=500, null=True, blank=True)
patient_history = models.CharField(max_length=1000, null=True, blank=True)

community_health_worker_notes = models.CharField(
max_length=500, null=True, blank=True
Expand Down

0 comments on commit 363a535

Please sign in to comment.