Changes between Version 44 and Version 45 of RemovingTheMagic
- Timestamp:
- Jan 22, 2006, 9:00:53 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemovingTheMagic
v44 v45 471 471 == Changed database table naming scheme == 472 472 473 '''Status: Done''' 474 473 475 Database table names formerly were created by joining the app_label and module_name. Example: {{{polls_polls}}}. 474 476 … … 479 481 To 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. 480 482 483 == Namespace simplification == 484 485 '''Status: Done''' 486 487 See NamespaceSimplification for details. 488 481 489 == Change subclassing syntax == 482 490 … … 488 496 489 497 See DescriptorFields, rjwittams' proposal on the API changes. 490 491 == Namespace Simplification ==492 493 '''Status: Done'''494 495 See NamespaceSimplification for details.