summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2014-09-04 16:32:51 +0100
committerMarc Tamlyn <marc.tamlyn@gmail.com>2014-09-06 19:02:28 +0100
commit48e10710074a06584b6f8331a6e74492be5acf18 (patch)
tree8129da9afe985d3a688f605a38394e289f249405 /docs
parentf8fdb7177b79b79968a3f40612d33c7367ae584f (diff)
[1.7.x] Fixed #23416 -- Make sure DatabaseCreation respects checks.
Migrations respected Field.db_parameters()['check'], but DatabaseCreation was still using just Field.db_type(). Backport of 14c8456 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 64a673f5a6..90673a826f 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -13,3 +13,6 @@ Bugfixes
* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
Unicode characters (:ticket:`22882`).
+
+* Reinstated missing ``CHECK`` SQL clauses which were omitted on some backends
+ when not using migrations (:ticket:`23416`).