[Answer]-Django installing custom app(Postgresql model)

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:

  1. add app to INSTALLED_APPS in settings.py
  2. run python manage.py syncdb
  3. add urls to urls.py

Perhaps you should go through this (again?) https://docs.djangoproject.com/en/dev/intro/tutorial01/

Leave a comment