Instead of a response from OP, the recommended solution in this case is to make sure that you clear any lingering migrations by restoring / making migrations from a new copy of the model using the following:
python manage.py makemigrations pad
In this case, remember that pad refers to the user's application name. You can leave it outside the team to make fresh migrations in all directions:
python manage.py makemigrations
After completion, you can either transfer the application or the general transfer:
#Specific for this case python manage.py migrate pad #or Rebuild all available migrations python manage.py migrate
If after this you still have a problem, your model has a problem.
source share