Changes between Initial Version and Version 4 of Ticket #11560


Ignore:
Timestamp:
Apr 16, 2011, 3:02:18 AM (13 years ago)
Author:
Julien Phalip
Comment:

The tests would need to be rewritten using unittests since this is now Django's preferred way.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11560

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Triage Stage UnreviewedAccepted
    • Property SeverityNormal
    • Property TypeNew feature
    • Property Patch needs improvement set
    • Property Needs documentation set
  • Ticket #11560 – Description

    initial v4  
    1 
    21Currently proxy models are required to have a single concrete base model class.  Unfortunately this prevents me from combining several proxy subclasses of the same model.  In my particular use case, I have two different apps that provide two different proxies of the standard User model.  To successfully use both apps I need to create another subclass that combines the two, e.g:
    32
Back to Top