aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/migrations.textile
diff options
context:
space:
mode:
authorJason Noble <perlwizard@gmail.com>2011-12-03 19:20:40 -0700
committerJason Noble <perlwizard@gmail.com>2011-12-03 19:31:44 -0700
commitd8c8bf5f05f50ef5e4709941bcb7a7ab97e44cee (patch)
tree3d615fcfcd090be7e26829c91ad91073fd3aa39c /railties/guides/source/migrations.textile
parent93d9845c30c3b3080698ff72738feeaab1aceed4 (diff)
downloadrails-d8c8bf5f05f50ef5e4709941bcb7a7ab97e44cee.tar.gz
rails-d8c8bf5f05f50ef5e4709941bcb7a7ab97e44cee.tar.bz2
rails-d8c8bf5f05f50ef5e4709941bcb7a7ab97e44cee.zip
Change wording to be more explicit on what migrating with a version does
Diffstat (limited to 'railties/guides/source/migrations.textile')
-rw-r--r--railties/guides/source/migrations.textile5
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index 381c1055d9..5e4d948b24 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -551,8 +551,9 @@ $ rake db:migrate VERSION=20080906120000
If version 20080906120000 is greater than the current version (i.e., it is
migrating upwards), this will run the +up+ method on all migrations up to and
-including 20080906120000. If migrating downwards, this will run the +down+
-method on all the migrations down to, but not including, 20080906120000.
+including 20080906120000, and will not execute any later migrations. If
+migrating downwards, this will run the +down+ method on all the migrations
+down to, but not including, 20080906120000.
h4. Rolling Back