summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-06-01 19:27:28 -0400
committerTim Graham <timograham@gmail.com>2015-06-02 09:25:47 -0400
commite1e6399c2ce39a3656155c4d704340eac83926a7 (patch)
treebaa8cb921a06e86d9ad75d703e06100caa139539 /docs
parent5ab86809832726957dd6f0eb8e17a461f0a9be84 (diff)
Fixed #24893 -- Fixed lack of unique constraint when changing a field from primary_key=True to unique=True
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index a45ba7d268..c2a4f6af3d 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -34,3 +34,6 @@ Bugfixes
* Fixed quoting of SQL when renaming a field to ``AutoField`` in PostgreSQL
(:ticket:`24892`).
+
+* Fixed lack of unique constraint when changing a field from
+ ``primary_key=True`` to ``unique=True`` (:ticket:`24893`).