-
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.
Corrects spelling mistakes for Rules Tube Aspiration entries with Ryl…
…es Tube Aspiration
- Loading branch information
1 parent
72f9e9a
commit dd33b97
Showing
1 changed file
with
66 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Generated by Django 4.2.10 on 2024-08-20 12:38 | ||
|
||
from django.core.paginator import Paginator | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
""" | ||
Migration to correct the entries with spelling mistake for "Rules Tube Aspiration" | ||
to "Ryles Tube Aspiration" in both DailyRound's output JSONField. | ||
""" | ||
|
||
dependencies = [ | ||
("facility", "0447_patientconsultationevent_taken_at"), | ||
] | ||
|
||
def forward_rename_dailyround_entries(apps, schema_editor): | ||
DailyRound = apps.get_model("facility", "DailyRound") | ||
|
||
paginator = Paginator( | ||
DailyRound.objects.filter( | ||
output__contains=[{"name": "Rules Tube Aspiration"}] | ||
).order_by("id"), | ||
1000, | ||
) | ||
|
||
for page_number in paginator.page_range: | ||
bulk = [] | ||
for instance in paginator.page(page_number).object_list: | ||
updated = [] | ||
for entry in instance.output: | ||
if entry["name"] == "Rules Tube Aspiration": | ||
entry["name"] = "Ryles Tube Aspiration" | ||
updated.append(entry) | ||
instance.output = updated | ||
bulk.append(instance) | ||
DailyRound.objects.bulk_update(bulk, ["output"]) | ||
|
||
def reverse_rename_dailyround_entries(apps, schema_editor): | ||
DailyRound = apps.get_model("facility", "DailyRound") | ||
|
||
paginator = Paginator( | ||
DailyRound.objects.filter( | ||
output__contains=[{"name": "Ryles Tube Aspiration"}] | ||
).order_by("id"), | ||
1000, | ||
) | ||
|
||
for page_number in paginator.page_range: | ||
bulk = [] | ||
for instance in paginator.page(page_number).object_list: | ||
updated = [] | ||
for entry in instance.output: | ||
if entry["name"] == "Ryles Tube Aspiration": | ||
entry["name"] = "Rules Tube Aspiration" | ||
updated.append(entry) | ||
instance.output = updated | ||
bulk.append(instance) | ||
DailyRound.objects.bulk_update(bulk, ["output"]) | ||
|
||
operations = [ | ||
migrations.RunPython( | ||
forward_rename_dailyround_entries, | ||
reverse_code=reverse_rename_dailyround_entries, | ||
), | ||
] |