1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[5.0.x] Fixed #35006 -- Fixed migrations crash when altering Meta.db_table_comment on SQLite.

Thanks Юрий for the report.

Regression in 78f163a4fb.
Backport of 37fc832a54 from main
This commit is contained in:
Mariusz Felisiak
2023-11-30 10:10:27 +01:00
parent a4a0f66570
commit 7f1dc67f53
4 changed files with 30 additions and 7 deletions

View File

@@ -35,3 +35,6 @@ Bugfixes
* Fixed a regression in Django 4.2 where the admin's read-only password widget
and some help texts were incorrectly aligned at tablet widths
(:ticket:`34982`).
* Fixed a regression in Django 4.2 that caused a migration crash on SQLite when
altering unsupported ``Meta.db_table_comment`` (:ticket:`35006`).