Changes between Version 44 and Version 45 of RemovingTheMagic


Ignore:
Timestamp:
Jan 22, 2006, 9:00:53 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Moved "Namespace simplification" so that the bottom entries are all "Not done yet"s

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v44 v45  
    471471== Changed database table naming scheme ==
    472472
     473'''Status: Done'''
     474
    473475Database table names formerly were created by joining the app_label and module_name. Example: {{{polls_polls}}}.
    474476
     
    479481To upgrade, you'll either have to explicitly set {{{db_table}}} in your models or rename your database tables to fit the new naming scheme Django expects.
    480482
     483== Namespace simplification ==
     484
     485'''Status: Done'''
     486
     487See NamespaceSimplification for details.
     488
    481489== Change subclassing syntax ==
    482490
     
    488496
    489497See DescriptorFields, rjwittams' proposal on the API changes.
    490 
    491 == Namespace Simplification ==
    492 
    493 '''Status: Done'''
    494 
    495 See NamespaceSimplification for details.
Back to Top