summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-11-03 14:02:49 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-11-03 14:02:49 +0000
commit585b7acaa359fc1df07269c1a4b4756bdb6703f7 (patch)
tree8fd3d96de629257ee7bb51e757e20b74df6b3f22 /docs/internals
parentaba5389326372be43b2a3bdcda16646fd197e807 (diff)
downloaddjango-585b7acaa359fc1df07269c1a4b4756bdb6703f7.tar.gz
Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introducing an autogenerated through model.
This is the first part of Alex Gaynor's GSoC project to add Multi-db support to Django. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11710 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 6cf62137dd..480b527d6b 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -25,6 +25,9 @@ their deprecation, as per the :ref:`Django deprecation policy
* ``SMTPConnection``. The 1.2 release deprecated the ``SMTPConnection``
class in favor of a generic E-mail backend API.
+ * The many to many SQL generation functions on the database backends
+ will be removed. These have been deprecated since the 1.2 release.
+
* 2.0
* ``django.views.defaults.shortcut()``. This function has been moved
to ``django.contrib.contenttypes.views.shortcut()`` as part of the