Fix: made brand nullable
This commit is contained in:
@@ -33,7 +33,7 @@ class GtinProduct(models.Model):
|
||||
api_request = models.CharField(max_length=250)
|
||||
api_response = models.CharField(max_length=4096)
|
||||
name = models.CharField(max_length=200, blank=True)
|
||||
brand = models.CharField(max_length=40, blank=True)
|
||||
brand = models.CharField(max_length=40, blank=True, null=True)
|
||||
created_ts = models.DateTimeField('datetime created', auto_now_add=True)
|
||||
changed_ts = models.DateTimeField('datetime updated', auto_now=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user