Skip to content

Commit bfce2d5

Browse files
committed
Tweaked the Meeting.days field type.
- Legacy-Id: 14241
1 parent e3b7fb0 commit bfce2d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Meeting(models.Model):
5454
# is not used to determine date for timeslot instances thereafter, as
5555
# they have their own datetime field.
5656
date = models.DateField()
57-
days = models.PositiveIntegerField(default=7, null=False, validators=[MinValueValidator(1)],
57+
days = models.IntegerField(default=7, null=False, validators=[MinValueValidator(1)],
5858
help_text="The number of days the meeting lasts")
5959
city = models.CharField(blank=True, max_length=255)
6060
country = models.CharField(blank=True, max_length=2, choices=countries)

0 commit comments

Comments
 (0)