Don't require region/carrier for categories

This commit is contained in:
Matt Basta 2013-03-29 12:59:32 -07:00
Родитель 63a68cb4f8
Коммит f0374a0df2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1860,9 +1860,9 @@ class Category(amo.models.ModelBase):
# Used for operator shelves and magic categories.
carrier = models.PositiveIntegerField(
choices=mkt.constants.CARRIER_CHOICES, null=True)
choices=mkt.constants.CARRIER_CHOICES, null=True, blank=True)
region = models.PositiveIntegerField(
choices=mkt.constants.REGIONS_CHOICES_ID, null=True)
choices=mkt.constants.REGIONS_CHOICES_ID, null=True, blank=True)
class Meta:
db_table = 'categories'