Changes between Version 3 and Version 4 of MultipleDatabaseSupport
- Timestamp:
- Jun 21, 2006, 3:45:56 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MultipleDatabaseSupport
v3 v4 45 45 }}} 46 46 47 * Allow transaction decorators, etc to take optional connections argument. Without that argument, transactions will apply across all connections already in use. The default connection is '''always''' included.47 * Allow transaction decorators, etc to take optional connections argument. Without that argument, transactions will apply across all connections already in use. 48 48 49 49 * Move generation of schema manipulating sql (CREATE TABLE, etc) from django.core.management into backend.creation. … … 53 53 === Current status === 54 54 55 Current patch is attached . It implements most of the model-level changes, a few manager-level changes, and table creation for postgres and sqlite. It does not implement any transaction changes, and nothing has been removed yet from django.core.management; the model table cration code there has just been adapted in django.db.backends.ansi.creation.55 Current patch is attached (p5.diff). It implements most of the model-level changes, a few manager-level changes, and table creation, including generation (but not execution) of many-many tables. Relative to p4.diff, this patch adds transaction support and many-many table creation and fixes a few bugs. Nothing has been removed yet from django.core.management; the model table creation code there has just been adapted in django.db.backends.ansi.creation.