Use AbstractModel for Wish class

This commit is contained in:
Declerfayt Cedric 2015-12-10 17:12:32 +01:00
parent f8da7d8d3c
commit e2b8bdb957
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class Wishlist(AbstractModel):
return w
class Wish(models.Model):
class Wish(AbstractModel):
wishlist = models.ForeignKey(Wishlist, related_name='items')
name = models.CharField(max_length=255)