Making migrations for app models moved to another directory that's not their default creation directory

15 views Asked by At

This is my folder structure

backend
  server
  apps          # directory I created
    endpoints   # my app

In settings.py

INSTALLED_APPS[
   .......
   'apps.endpoint'
  ]

When I run python3 manage.py make migrations I'm receiving a ModuleNotFoundError: No module named 'endpoints'

0

There are 0 answers