Skip to content

Commit

Permalink
* Remove the type field from the category.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff committed Nov 8, 2018
1 parent ec3775f commit b143be2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion django_kala/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def __str__(self): # pragma: no cover
class Category(models.Model):
name = models.CharField(max_length=255)
project = models.ForeignKey(Project, on_delete=models.CASCADE)
type = models.CharField(max_length=20, db_index=True, null=True, blank=True)

def __str__(self):
return '{0}'.format(self.name)
Expand Down

0 comments on commit b143be2

Please sign in to comment.