diff --git a/care/facility/migrations/0138_auto_20200720_2227.py b/care/facility/migrations/0138_auto_20200720_2227.py new file mode 100644 index 0000000000..4ff5f58e98 --- /dev/null +++ b/care/facility/migrations/0138_auto_20200720_2227.py @@ -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), + ), + ] diff --git a/care/facility/models/patient_base.py b/care/facility/models/patient_base.py index b24bfe838c..12cf761f84 100644 --- a/care/facility/models/patient_base.py +++ b/care/facility/models/patient_base.py @@ -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"),