I got an error, AttributeError: 'module' object has no attribute 'IntegerRangeField' . I wrote in models.py
class ImageAndUser(models.Model):
rbc = models.IntegerRangeField(min_value=1, max_value=100)
I think maybe something to be needed is not imported in models.py, but it is not true. How can I fix this?