-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add more symptoms * Split new loss of taste/smell into two symptoms * exclude migrations from lint * ignore migrations from isort lint * fix * fix * lint * rebase migrations --------- Co-authored-by: Aakash Singh <mail@singhaakash.dev>
- Loading branch information
Showing
4 changed files
with
165 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
145 changes: 145 additions & 0 deletions
145
care/facility/migrations/0407_alter_dailyround_additional_symptoms_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
# Generated by Django 4.2.5 on 2024-01-08 17:26 | ||
|
||
import multiselectfield.db.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("facility", "0406_merge_20240116_2346"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="dailyround", | ||
name="additional_symptoms", | ||
field=multiselectfield.db.fields.MultiSelectField( | ||
blank=True, | ||
choices=[ | ||
(1, "ASYMPTOMATIC"), | ||
(2, "FEVER"), | ||
(3, "SORE THROAT"), | ||
(4, "COUGH"), | ||
(5, "BREATHLESSNESS"), | ||
(6, "MYALGIA"), | ||
(7, "ABDOMINAL DISCOMFORT"), | ||
(8, "VOMITING"), | ||
(9, "OTHERS"), | ||
(11, "SPUTUM"), | ||
(12, "NAUSEA"), | ||
(13, "CHEST PAIN"), | ||
(14, "HEMOPTYSIS"), | ||
(15, "NASAL DISCHARGE"), | ||
(16, "BODY ACHE"), | ||
(17, "DIARRHOEA"), | ||
(18, "PAIN"), | ||
(19, "PEDAL EDEMA"), | ||
(20, "WOUND"), | ||
(21, "CONSTIPATION"), | ||
(22, "HEAD ACHE"), | ||
(23, "BLEEDING"), | ||
(24, "DIZZINESS"), | ||
(25, "CHILLS"), | ||
(26, "GENERAL WEAKNESS"), | ||
(27, "IRRITABILITY"), | ||
(28, "CONFUSION"), | ||
(29, "ABDOMINAL PAIN"), | ||
(30, "JOINT PAIN"), | ||
(31, "REDNESS OF EYES"), | ||
(32, "ANOREXIA"), | ||
(33, "NEW LOSS OF TASTE"), | ||
(34, "NEW LOSS OF SMELL"), | ||
], | ||
default=1, | ||
max_length=89, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="patientconsultation", | ||
name="symptoms", | ||
field=multiselectfield.db.fields.MultiSelectField( | ||
blank=True, | ||
choices=[ | ||
(1, "ASYMPTOMATIC"), | ||
(2, "FEVER"), | ||
(3, "SORE THROAT"), | ||
(4, "COUGH"), | ||
(5, "BREATHLESSNESS"), | ||
(6, "MYALGIA"), | ||
(7, "ABDOMINAL DISCOMFORT"), | ||
(8, "VOMITING"), | ||
(9, "OTHERS"), | ||
(11, "SPUTUM"), | ||
(12, "NAUSEA"), | ||
(13, "CHEST PAIN"), | ||
(14, "HEMOPTYSIS"), | ||
(15, "NASAL DISCHARGE"), | ||
(16, "BODY ACHE"), | ||
(17, "DIARRHOEA"), | ||
(18, "PAIN"), | ||
(19, "PEDAL EDEMA"), | ||
(20, "WOUND"), | ||
(21, "CONSTIPATION"), | ||
(22, "HEAD ACHE"), | ||
(23, "BLEEDING"), | ||
(24, "DIZZINESS"), | ||
(25, "CHILLS"), | ||
(26, "GENERAL WEAKNESS"), | ||
(27, "IRRITABILITY"), | ||
(28, "CONFUSION"), | ||
(29, "ABDOMINAL PAIN"), | ||
(30, "JOINT PAIN"), | ||
(31, "REDNESS OF EYES"), | ||
(32, "ANOREXIA"), | ||
(33, "NEW LOSS OF TASTE"), | ||
(34, "NEW LOSS OF SMELL"), | ||
], | ||
default=1, | ||
max_length=89, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="patientteleconsultation", | ||
name="symptoms", | ||
field=multiselectfield.db.fields.MultiSelectField( | ||
choices=[ | ||
(1, "ASYMPTOMATIC"), | ||
(2, "FEVER"), | ||
(3, "SORE THROAT"), | ||
(4, "COUGH"), | ||
(5, "BREATHLESSNESS"), | ||
(6, "MYALGIA"), | ||
(7, "ABDOMINAL DISCOMFORT"), | ||
(8, "VOMITING"), | ||
(9, "OTHERS"), | ||
(11, "SPUTUM"), | ||
(12, "NAUSEA"), | ||
(13, "CHEST PAIN"), | ||
(14, "HEMOPTYSIS"), | ||
(15, "NASAL DISCHARGE"), | ||
(16, "BODY ACHE"), | ||
(17, "DIARRHOEA"), | ||
(18, "PAIN"), | ||
(19, "PEDAL EDEMA"), | ||
(20, "WOUND"), | ||
(21, "CONSTIPATION"), | ||
(22, "HEAD ACHE"), | ||
(23, "BLEEDING"), | ||
(24, "DIZZINESS"), | ||
(25, "CHILLS"), | ||
(26, "GENERAL WEAKNESS"), | ||
(27, "IRRITABILITY"), | ||
(28, "CONFUSION"), | ||
(29, "ABDOMINAL PAIN"), | ||
(30, "JOINT PAIN"), | ||
(31, "REDNESS OF EYES"), | ||
(32, "ANOREXIA"), | ||
(33, "NEW LOSS OF TASTE"), | ||
(34, "NEW LOSS OF SMELL"), | ||
], | ||
max_length=89, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters