ValueError: Dependency on app with no migrations: customuser

You haven't run manage.py makemigrations customuser to create the migrations for your CustomUser app.

Also, you haven't run any of the existing migrations - you should do manage.py migrate.


Run the following commands

  1. python manage.py makemigrations
  2. python manage.py migrate

This solved my error. Hope it helps you.