We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37cd5da commit c01dcddCopy full SHA for c01dcdd
1 file changed
ietf/stats/models.py
@@ -59,6 +59,8 @@ class MeetingRegistration(models.Model):
59
country_code = models.CharField(max_length=2) # ISO 3166
60
person = ForeignKey(Person, blank=True, null=True)
61
email = models.EmailField(blank=True, null=True)
62
+ reg_type = models.CharField(blank=True, max_length=255)
63
+ ticket_type = models.CharField(blank=True, max_length=255)
64
65
def __str__(self):
66
return "{} {}".format(self.first_name, self.last_name)
0 commit comments