products/models.py: add extra Product fields

This commit is contained in:
2020-02-13 16:37:41 -08:00
parent ef2dd7dc52
commit cc93a8e4d6

View File

@ -21,6 +21,29 @@ class Product(models.Model):
category = models.CharField(max_length=100, db_column='category')
family = models.CharField(max_length=100, db_column='product_family')
color = models.CharField(max_length=100, db_column='colorway')
size_range = models.CharField(max_length=100, db_column='sizerange')
retail = models.CharField(max_length=100, db_column='retail')
wholesale = models.CharField(max_length=100, db_column='wholesale')
tech_call_out_1 = models.CharField(max_length=100)
tech_call_out_2 = models.CharField(max_length=100)
tech_call_out_3 = models.CharField(max_length=100)
tech_call_out_4 = models.CharField(max_length=100)
tech_call_out_5 = models.CharField(max_length=100)
tech_call_out_6 = models.CharField(max_length=100)
tech_call_out_7 = models.CharField(max_length=100)
tech_call_out_8 = models.CharField(max_length=100)
tech_call_out_9 = models.CharField(max_length=100)
tech_call_out_10 = models.CharField(max_length=100)
tech_call_out_11 = models.CharField(max_length=100)
tech_call_out_12 = models.CharField(max_length=100)
tech_call_out_13 = models.CharField(max_length=100)
tech_call_out_14 = models.CharField(max_length=100)
tech_call_out_15 = models.CharField(max_length=100)
tech_call_out_16 = models.CharField(max_length=100)
tech_call_out_17 = models.CharField(max_length=100)
tech_call_out_18 = models.CharField(max_length=100)
tech_call_out_19 = models.CharField(max_length=100)
tech_call_out_20 = models.CharField(max_length=100)
class Meta:
managed = False