1👍
✅
Common problem of forgetting to add it to the installed apps
INSTALLED_APPS = (
....
'your_project.you_app',
)
Your project name should be obvious (Name of the folder that houses manage.py).
Your app name is the folder that has your new models.py.
make sure your installed apps have commas between the strings
Source:stackexchange.com