wajib_fields = []
REQUIRED_FIELDS = ['name', 'username', 'email', 'password']
Specifies the fields to be asked in console when you run following command:-
"python manage.py createsuperuser"
Helpful in creating custom User Models in django.
Markhor