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

[1.7.x] Fixed #23702 -- Fixed adding an explicit id field on SQLite.

Thanks gavinwahl for the report.

Backport of 92269b7b53 from master
This commit is contained in:
Tim Graham
2014-10-23 12:24:34 -04:00
parent ba6a599ce4
commit 7750fc8fa8
3 changed files with 24 additions and 2 deletions

View File

@@ -11,3 +11,6 @@ Bugfixes
* Fixed migration's renaming of auto-created many-to-many tables when changing
:attr:`Meta.db_table <django.db.models.Options.db_table>` (:ticket:`23630`).
* Fixed a migration crash when adding an explicit ``id`` field to a model on
SQLite (:ticket:`23702`).