From c01dcddea19ee41a7fd18c76fd01a178959cb584 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 8 Jun 2020 19:14:21 +0000 Subject: [PATCH] Added reg_type and ticket_type to the MeetingRegistration model. - Legacy-Id: 17932 --- ietf/stats/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/stats/models.py b/ietf/stats/models.py index 65f2c957d..9453f1f8e 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -59,6 +59,8 @@ class MeetingRegistration(models.Model): country_code = models.CharField(max_length=2) # ISO 3166 person = ForeignKey(Person, blank=True, null=True) email = models.EmailField(blank=True, null=True) + reg_type = models.CharField(blank=True, max_length=255) + ticket_type = models.CharField(blank=True, max_length=255) def __str__(self): return "{} {}".format(self.first_name, self.last_name)