[Fixed]-Django models field types redefine error while syncDB

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)

Leave a comment