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:32:22 -0400
commit1c57d7e7faaeadb7f32e01586da7997d11df1ad9 (patch)
tree0f3b6ffff286571b1172abb3c6d858a31589703e /docs
parent8911d2e20fc5f4fc7b0274594813ed0b1ad8bc6b (diff)
[1.8.x] Fixed #24893 -- Fixed lack of unique constraint when changing a field from primary_key=True to unique=True
Backport of e1e6399c2ce39a3656155c4d704340eac83926a7 from master
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`).