79815337

Date: 2025-11-10 08:27:13
Score: 2.5
Natty:
Report link
  1. Open apps/accounts/apps.py (similar for your other apps like ads).

  2. You need to update the name attribute in the AccountsConfig class to match the full dotted path:

  3. from django.apps import AppConfig
    
    class AccountsConfig(AppConfig):
        default_auto_field = 'django.db.models.BigAutoField'
        name = 'apps.accounts'  # Change here
    
  4. 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
    
  5. After making these changes, run python manage.py makemigrations again.

It should work, if not then please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sajjan Nehal