Added reg_type and ticket_type to the MeetingRegistration model.

- Legacy-Id: 17932
This commit is contained in:
Henrik Levkowetz 2020-06-08 19:14:21 +00:00
parent 37cd5daaed
commit c01dcddea1

View file

@ -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)