summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMoayad Mardini <moayad.m@gmail.com>2014-03-24 13:06:39 +0200
committerTim Graham <timograham@gmail.com>2014-03-24 07:27:27 -0400
commitf847aeb6f88b2a39d32a916b0649330764dc145e (patch)
treed8e1c90c5e7260db693f1455f37dd39136e199cd /docs
parent1694e091f122f1c85c85317f519f5aa237cf317b (diff)
[1.7.x] Fixed #22265 -- Clarfied consistent behavior of migrations.
Thanks aruseni for the report. Backport of bff77e2aa8 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/migrations.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt
index 5d7f9ac5e1..6904916c12 100644
--- a/docs/topics/migrations.txt
+++ b/docs/topics/migrations.txt
@@ -55,9 +55,9 @@ staging machines, and eventually your production machines.
It is possible to override the name of the package which contains the
migrations on a per-app basis by modifying the :setting:`MIGRATION_MODULES` setting.
-Migrations will run the same way every time and produce consistent results,
-meaning that what you see in development and staging is exactly what will
-happen in production - no unexpected surprises.
+Migrations will run the same way on the same dataset and produce consistent
+results, meaning that what you see in development and staging is, under the
+same circumstances, exactly what will happen in production.
Backend Support
---------------