Skip to content

Commit

Permalink
Removes unused field temperature_measured_at from Daily Rounds (#2171)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed May 16, 2024
1 parent 653c079 commit 57986ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generated by Django 4.2.8 on 2024-05-15 17:07

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("facility", "0435_merge_20240515_1301"),
]

operations = [
migrations.RemoveField(
model_name="dailyround",
name="temperature_measured_at",
),
]
1 change: 0 additions & 1 deletion care/facility/models/daily_round.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ class InsulinIntakeFrequencyType(enum.Enum):
spo2 = models.DecimalField(
max_digits=4, decimal_places=2, blank=True, null=True, default=None
)
temperature_measured_at = models.DateTimeField(null=True, blank=True)
physical_examination_info = models.TextField(null=True, blank=True)
additional_symptoms = MultiSelectField(
choices=SYMPTOM_CHOICES,
Expand Down

0 comments on commit 57986ea

Please sign in to comment.