Allow intern to be null
This commit is contained in:
parent
4dda40f65c
commit
adb2081131
|
@ -20,7 +20,7 @@ class Association(models.Model):
|
|||
name = models.CharField(max_length=255)
|
||||
short_name = models.CharField(max_length=255)
|
||||
slug = models.CharField(max_length=255)
|
||||
intern = models.CharField(max_length=255)
|
||||
intern = models.CharField(max_length=255, blank=True, null=True)
|
||||
state = models.CharField(choices=STATES, max_length=255)
|
||||
city = models.ForeignKey(to=City, on_delete=models.SET_NULL, blank=True, null=True)
|
||||
has_intern = models.BooleanField()
|
||||
|
|
Loading…
Reference in a new issue