diff options
| author | Tim Graham <timograham@gmail.com> | 2015-07-31 08:07:16 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-31 08:19:39 -0400 |
| commit | 70912e137d5a6b089f35c662115fb758a00d7002 (patch) | |
| tree | a2b7c037cee36df7a53ce0a0d3d34bfde0d8fd6b | |
| parent | 5d0961fdfc396e755e60d4fa986bab8f45d375f4 (diff) | |
Fixed #25168 -- Documented how to avoid foreign key constraint error after upgrading to 1.8.
| -rw-r--r-- | docs/releases/1.8.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index d8ac681dae..c39d1979a0 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -1169,6 +1169,12 @@ Miscellaneous automatically faked if all tables created in an initial migration already existed. +* An app *without* migrations with a ``ForeignKey`` to an app *with* migrations + may now result in a foreign key constraint error when migrating the database + or running tests. In Django 1.7, this could fail silently and result in a + missing constraint. To resolve the error, add migrations to the app without + them. + .. _deprecated-features-1.8: Features deprecated in 1.8 |
