Tweaked the Meeting.days field type.

- Legacy-Id: 14241
This commit is contained in:
Henrik Levkowetz 2017-10-30 12:28:32 +00:00
parent e3b7fb081a
commit bfce2d5c83

View file

@ -54,7 +54,7 @@ class Meeting(models.Model):
# is not used to determine date for timeslot instances thereafter, as
# they have their own datetime field.
date = models.DateField()
days = models.PositiveIntegerField(default=7, null=False, validators=[MinValueValidator(1)],
days = models.IntegerField(default=7, null=False, validators=[MinValueValidator(1)],
help_text="The number of days the meeting lasts")
city = models.CharField(blank=True, max_length=255)
country = models.CharField(blank=True, max_length=2, choices=countries)