diff --git a/vaccinate/core/models.py b/vaccinate/core/models.py index 57ecb7f..29b3945 100644 --- a/vaccinate/core/models.py +++ b/vaccinate/core/models.py @@ -451,7 +451,7 @@ class CallRequest(models.Model): For example, if a bug in an app has us call a location repeatedly, we have the full record of why those calls were made. """ - class ReportType(models.TextChoices): + class TipType(models.TextChoices): EVA = "eva_report", "Eva report" SCOOBY = "scooby_report", "Scooby report" DATA_CORRECTIONS = "data_corrections_report", "Data corrections report" @@ -483,7 +483,7 @@ class ReportType(models.TextChoices): ) tip_type = CharTextField( - choices=ReportType.choices, + choices=TipType.choices, blank=True, null=True, help_text=" the type of tip that prompted this call request, if any",