Re: confusion in models in django

2017-12-19 Thread IL Ka
Apps not listed in INSTALLED_APPS will not participate in many important steps including migrations ("makemigrations" / 'migrate") so your models will not be created in database -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: confusion in models in django

2017-12-18 Thread Matemática A3K
By registering an app you take full advantage of the framework: https://docs.djangoproject.com/en/2.0/ref/applications/#application-registry You can import "things" (modules, functions, etc.) from any python module in the path, that's why you are able to import any python code from your project di