-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
legislativeRelating to the legislative appRelating to the legislative app
Description
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?
python-opencivicdata/opencivicdata/legislative/models/event.py
Lines 149 to 152 in 6c34255
| class EventAgendaItem(RelatedBase): | |
| description = models.TextField() | |
| classification = ArrayField(base_field=models.TextField(), blank=True, default=list) | |
| order = models.CharField(max_length=100, blank=True) |
Metadata
Metadata
Assignees
Labels
legislativeRelating to the legislative appRelating to the legislative app