1👍
✅
The first positional argument to any Field class is verbose_name, not validators. You should pass it as a kwarg. (Also, you should really use super()).
super(BigIntegerField, self).__init__(self, validators=validators, **kwargs)
Source:stackexchange.com