Changes between Version 26 and Version 27 of SummerOfCode2011


Ignore:
Timestamp:
Mar 9, 2012, 10:00:30 AM (12 years ago)
Author:
Luke Plant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SummerOfCode2011

    v26 v27  
    9696 * How can we manage the dependencies that exist in contrib.admin (and other parts of Django core and Django.contrib) that rely on the internals of auth.User as currently implemented?
    9797 * How can we roll out a new/modified User model without requiring almost every Django application on the planet to undergo a complex database modification?
     98   * If you go for a modified User model, you have the problem of altering the existing table, and handling data that doesn't fit the changed constraints
     99   * If you go for a new User model, you have the problem of all the foreign keys that point to the old one, both in contrib apps and third party apps.
     100   
    98101
    99102See also:
Back to Top