The agenda item model has an order field, which is very useful.
It's a CharField. It would be much more convenient for me if it was an Integer field. Is there any reason why it needs to be a CharField?
|
class EventAgendaItem(RelatedBase): |
|
description = models.TextField() |
|
classification = ArrayField(base_field=models.TextField(), blank=True, default=list) |
|
order = models.CharField(max_length=100, blank=True) |