Skip to content

Commit

Permalink
feat: toward #17 and #21, survey models, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
erictheise committed May 17, 2020
1 parent b1e20ed commit 9d8c0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdi/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9d8c0a9

Please sign in to comment.