Allow arbitrary strings for event attendees field

This commit is contained in:
Yingtong Li 2020-01-25 23:17:21 +11:00
parent 392e26636f
commit a9021faedc
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class BudgetRevision(models.Model):
time = models.DateTimeField()
event_dt = models.DateTimeField(null=True)
event_attendees = models.IntegerField(null=True)
event_attendees = models.CharField(max_length=20, null=True)
state = models.IntegerField(choices=[(v.value, v.description) for v in BudgetState])