Changes between Version 230 and Version 231 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 11, 2008, 7:47:15 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v230 v231 1149 1149 * The creation module, previously provided using `django.db.get_creation_module()`, is now available on the database connection as the attribute `connection.creation`. 1150 1150 * 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()`. 1152 1152 1153 1153 Users 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()`