-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove deprecated fields that has been migrated to new models (Diagno…
…sis, Symptoms and Prescriptions) (#2247) * remove deprecated symptoms fields * remove deprecated fields that has been migrated to new models * update migrations * rebase migrations * rebase migrations again... * update migrations * update migrations --------- Co-authored-by: Aakash Singh <[email protected]> Co-authored-by: Vignesh Hari <[email protected]>
- Loading branch information
1 parent
25afb1f
commit e2ede2b
Showing
5 changed files
with
90 additions
and
286 deletions.
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
64 changes: 64 additions & 0 deletions
64
care/facility/migrations/0452_remove_patientconsultation_deprecated_diagnosis_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,64 @@ | ||
# Generated by Django 4.2.10 on 2024-08-23 10:57 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("facility", "0451_merge_20240823_1642"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_diagnosis", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_icd11_diagnoses", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_icd11_principal_diagnosis", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_icd11_provisional_diagnoses", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="discharge_advice", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="discharge_prescription", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="discharge_prn_prescription", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="prn_prescription", | ||
), | ||
migrations.RemoveField( | ||
model_name="dailyround", | ||
name="deprecated_additional_symptoms", | ||
), | ||
migrations.RemoveField( | ||
model_name="dailyround", | ||
name="deprecated_other_symptoms", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_other_symptoms", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_symptoms", | ||
), | ||
migrations.RemoveField( | ||
model_name="patientconsultation", | ||
name="deprecated_symptoms_onset_date", | ||
), | ||
] |
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
Oops, something went wrong.