remove slug field from product attribute value model

remotes/origin/HEAD
Max Yakovenko 8 years ago
parent ff8e04053a
commit 6dd08f9eab
  1. 1
      products/models.py

@ -185,7 +185,6 @@ class ProductDiscount(AbstractStatusModel):
class ProductAttributeValue(AbstractStatusModel):
attribute = models.ForeignKey(ProductAttribute, on_delete=models.CASCADE, related_name='value')
slug = AutoSlugField(populate_from='name')
value = HStoreField(_('значение'), default={})
def __str__(self):

Loading…
Cancel
Save