10👍
✅
first of all CharField
requires a max_length
field and validators
need to be in a list
[]
so,
class Cloth(models.Model):
color = models.CharField(validators=[validate_comma_separated_integer_list],max_length=100)
Source:stackexchange.com