Open apps/accounts/apps.py (similar for your other apps like ads).
You need to update the name attribute in the AccountsConfig class to match the full dotted path:
from django.apps import AppConfig
class AccountsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.accounts' # Change here
Do the same for apps/ads/apps.py:
from django.apps import AppConfig
class AdsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.ads' # Change here
After making these changes, run python manage.py makemigrations again.
It should work, if not then please let me know.