diff --git a/mdi/models.py b/mdi/models.py index 4d0a3c9..42b3833 100644 --- a/mdi/models.py +++ b/mdi/models.py @@ -234,7 +234,7 @@ class Organization(models.Model): geo_scope_country = CountryField(blank=True, verbose_name='Geographic scope – Country', ) impacted_range = IntegerRangeField(blank=True, null=True, default=None) impacted_exact_number = models.IntegerField(blank=True, null=True, default=None) - code_availability = models.CharField(blank=True, max_length=8, choices=[(0, 'Yes'), (1, 'Partially'), (2, 'No')]) + code_availability = models.CharField(blank=True, max_length=9, choices=[(0, 'Yes'), (1, 'Partially'), (2, 'No')]) categories = models.ManyToManyField(Category, blank=True,) stage = models.ForeignKey(Stage, blank=True, null=True, default=None, on_delete=models.CASCADE) source = models.ForeignKey(Source, on_delete=models.CASCADE, blank=True, null=True)