Commit 39952c28 authored by Rau Layug's avatar Rau Layug

Changed Location mode field max_length

parent 950cfc0e
......@@ -10,7 +10,7 @@ class Location(models.Model):
("ONL", "Online"),
("OAO", "Onsite and Online")
]
mode = models.CharField(max_length=18, choices=MODE_CHOICES)
mode = models.CharField(max_length=3, choices=MODE_CHOICES)
venue = models.CharField(max_length=150)
def __str__(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment