summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.0.txt b/docs/releases/2.0.txt
index 9c0f960d35..6c966c2d1b 100644
--- a/docs/releases/2.0.txt
+++ b/docs/releases/2.0.txt
@@ -289,6 +289,9 @@ Database backend API
attribute with the name of the database that your backend works with. Django
may use it in various messages, such as in system checks.
+* The first argument of ``SchemaEditor._alter_column_type_sql()`` is now
+ ``model`` rather than ``table``.
+
* To improve performance when streaming large result sets from the database,
:meth:`.QuerySet.iterator` now fetches 2000 rows at a time instead of 100.
The old behavior can be restored using the ``chunk_size`` parameter. For