1👍
✅
Make sure you have added your new Django application to the INSTALLED_APPS
list in the LMS settings:
INSTALLED_APPS = (
...
'yourapp',
Then re-run the lms migrations:
$ paver update_db -s devstack
Source:stackexchange.com