Changes between Version 230 and Version 231 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 11, 2008, 7:47:15 AM (16 years ago)
Author:
Boo
Comment:

Typo

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v230 v231  
    11491149 * The creation module, previously provided using `django.db.get_creation_module()`, is now available on the database connection as the attribute `connection.creation`.
    11501150 * The introspection module, previously provided using `django.db.get_introspection_module()` is now available on the database connection as the attribute `connection.introspection`.
    1151  * The DB shell, previously accessed using `django.db.runshell()` is now available on the database connection as`connection.client.runshell()`.
     1151 * The DB shell, previously accessed using `django.db.runshell()` is now available on the database connection as `connection.client.runshell()`.
    11521152
    11531153Users that have written custom test runners will also be affected; the `create_test_db()` and `destroy_test_db()` helper methods (plus a few other methods utilized by these two) have been moved into the database backend as part of the creation interface. You can access these methods using `connection.creation.create_test_db()` and `connection.creation.destroy_test_db()`
Back to Top