diff options
| -rw-r--r-- | chimere/main/models.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/main/models.py b/chimere/main/models.py index 3efc1bc..4647435 100644 --- a/chimere/main/models.py +++ b/chimere/main/models.py @@ -134,7 +134,7 @@ class SubCategory(models.Model):      name = models.CharField(_("Name"), max_length=150)      available = models.BooleanField(_("Available"))      areas = models.ManyToManyField('Area', related_name='areas', -                         blank=True, null=True, db_table=u'subcategory_areas') +                                   blank=True, null=True)      icon = models.ForeignKey(Icon, verbose_name=_("Icon"))      color_theme = models.ForeignKey(ColorTheme, verbose_name=_("Color theme"),                                      blank=True, null=True)  | 
