Skip to content

Commit

Permalink
Added Asymptomatic in category choices
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshhari committed Jul 20, 2020
1 parent 3695e9a commit 5814d41
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions care/facility/migrations/0138_auto_20200720_2227.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 2.2.11 on 2020-07-20 16:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('facility', '0137_auto_20200718_0654'),
]

operations = [
migrations.AlterField(
model_name='dailyround',
name='patient_category',
field=models.CharField(blank=True, choices=[('ASYM', 'ASYMPTOMATIC'), ('Mild', 'Category-A'), ('Moderate', 'Category-B'), ('Severe', 'Category-C'), (None, 'UNCLASSIFIED')], default=None, max_length=8, null=True),
),
migrations.AlterField(
model_name='patientconsultation',
name='category',
field=models.CharField(blank=True, choices=[('ASYM', 'ASYMPTOMATIC'), ('Mild', 'Category-A'), ('Moderate', 'Category-B'), ('Severe', 'Category-C'), (None, 'UNCLASSIFIED')], default=None, max_length=8, null=True),
),
]
1 change: 1 addition & 0 deletions care/facility/models/patient_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
DISEASE_CHOICES = [(v, k) for k, v in DISEASE_CHOICES_MAP.items()]

CATEGORY_CHOICES = [
("ASYM", "ASYMPTOMATIC"),
("Mild", "Category-A"),
("Moderate", "Category-B"),
("Severe", "Category-C"),
Expand Down

0 comments on commit 5814d41

Please sign in to comment.