1👍
✅
In order for management commands to work, the app has to be added to INSTALLED_APPS
. However, a basic problem that you have is that the module doesn’t support ENUM
yet. Its still a work in progress.
0👍
After adding new app:
- add app to INSTALLED_APPS in settings.py
- run python manage.py syncdb
- add urls to urls.py
Perhaps you should go through this (again?) https://docs.djangoproject.com/en/dev/intro/tutorial01/
Source:stackexchange.com