We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b7fb0 commit bfce2d5Copy full SHA for bfce2d5
1 file changed
ietf/meeting/models.py
@@ -54,7 +54,7 @@ class Meeting(models.Model):
54
# is not used to determine date for timeslot instances thereafter, as
55
# they have their own datetime field.
56
date = models.DateField()
57
- days = models.PositiveIntegerField(default=7, null=False, validators=[MinValueValidator(1)],
+ days = models.IntegerField(default=7, null=False, validators=[MinValueValidator(1)],
58
help_text="The number of days the meeting lasts")
59
city = models.CharField(blank=True, max_length=255)
60
country = models.CharField(blank=True, max_length=2, choices=countries)
0 commit comments