Fix something :)

This commit is contained in:
Maxime Bloch 2020-07-22 01:44:14 +02:00
parent 33af7f13d1
commit 6240f53ef5
2 changed files with 2 additions and 1 deletions

View file

@ -16,4 +16,4 @@ class EventRegistration(models.Model):
)
event_id = models.ForeignKey(Event, on_delete=models.CASCADE)
user_id = models.ForeignKey(CustomUser, on_delete=models.CASCADE)
shirt_size = models.CharField(max_length=1, choices=REGISTRATION_STATE)
state = models.CharField(max_length=1, choices=REGISTRATION_STATE)

View file

@ -2,4 +2,5 @@ asgiref==3.2.10
Django==3.0.8
mysqlclient==2.0.1
pytz==2020.1
PyYAML==5.3.1
sqlparse==0.3.1