From 51c8045145b29fed604f716d4d17958aa803b5ea Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 24 Mar 2014 11:42:56 -0400 Subject: Removed versionadded/changed annotations for 1.6. --- docs/ref/databases.txt | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'docs/ref/databases.txt') diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index f2ed1c6b7a..c6fde68a1a 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -19,8 +19,6 @@ General notes Persistent connections ---------------------- -.. versionadded:: 1.6 - Persistent connections avoid the overhead of re-establishing a connection to the database in each request. They're controlled by the :setting:`CONN_MAX_AGE` parameter which defines the maximum lifetime of a @@ -114,34 +112,11 @@ will do some additional queries to set these parameters. .. _ALTER ROLE: http://www.postgresql.org/docs/current/interactive/sql-alterrole.html -.. _postgresql-autocommit-mode: - -Autocommit mode ---------------- - -.. versionchanged:: 1.6 - -In previous versions of Django, database-level autocommit could be enabled by -setting the ``autocommit`` key in the :setting:`OPTIONS` part of your database -configuration in :setting:`DATABASES`:: - - DATABASES = { - # ... - 'OPTIONS': { - 'autocommit': True, - }, - } - -Since Django 1.6, autocommit is turned on by default. This configuration is -ignored and can be safely removed. - .. _database-isolation-level: Isolation level --------------- -.. versionadded:: 1.6 - Like PostgreSQL itself, Django defaults to the ``READ COMMITTED`` `isolation level`_. If you need a higher isolation level such as ``REPEATABLE READ`` or ``SERIALIZABLE``, set it in the :setting:`OPTIONS` part of your database -- cgit v1.3