#23358: migrations
-------------------------------+--------------------
     Reporter:  rsalmaso       |      Owner:  nobody
         Type:  Uncategorized  |     Status:  new
    Component:  Migrations     |    Version:  master
     Severity:  Normal         |   Keywords:
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  0              |      UI/UX:  0
-------------------------------+--------------------
 I've a project with this layout

 {{{
 project
 project.myapp
 ... # other apps
 }}}

 `project` and `project.myapp` have both models.py
 `project.myapp.models` has `MyModel` defined

 If I have
 INSTALLED_APPS = (
   'project.myapp',
   'project',
 )
 django recognize `project.myapp.models.MyModel` correctly as
 `myapp.MyModel`.

 otherwise if I have
 INSTALLED_APPS = (
   'project',
   'project.myapp',
 )
 django recognize `project.myapp.models.MyModel` correctly as
 `project.MyModel`.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/23358>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/051.41b92d76b8c7ff04f46b3ed2c7fae79b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to