diff --git a/backend/apps/root/models.py b/backend/apps/root/models.py index 5639e68b1..c11ef1dcd 100644 --- a/backend/apps/root/models.py +++ b/backend/apps/root/models.py @@ -935,6 +935,9 @@ class TransactionType(models.TextChoices): help_text="Additional information for this tier provided by the host.", ) + class Meta: + ordering = ("-modified",) + def __str__(self): return f"TicketTier: {self.ticket_type}"