Skip to content

Commit c01dcdd

Browse files
committed
Added reg_type and ticket_type to the MeetingRegistration model.
- Legacy-Id: 17932
1 parent 37cd5da commit c01dcdd

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/stats/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ class MeetingRegistration(models.Model):
5959
country_code = models.CharField(max_length=2) # ISO 3166
6060
person = ForeignKey(Person, blank=True, null=True)
6161
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)
6264

6365
def __str__(self):
6466
return "{} {}".format(self.first_name, self.last_name)

0 commit comments

Comments
 (0)