1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #32714 -- Prevented recreation of migration for Meta.ordering with OrderBy expressions.

Regression in c8b6594305.

Thanks Kevin Marsh for the report.
This commit is contained in:
Simon Charette
2021-05-04 17:49:46 -04:00
committed by Mariusz Felisiak
parent f9f6bd63c9
commit 96f55ccf79
3 changed files with 26 additions and 3 deletions

View File

@@ -9,4 +9,6 @@ Django 3.2.2 fixes several bugs in 3.2.1.
Bugfixes
========
* ...
* Prevented, following a regression in Django 3.2.1, :djadmin:`makemigrations`
from generating infinite migrations for a model with ``Meta.ordering``
contained ``OrderBy`` expressions (:ticket:`32714`).