1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Change wording to be more explicit on what migrating with a version does

This commit is contained in:
Jason Noble 2011-12-03 19:20:40 -07:00
parent 93d9845c30
commit d8c8bf5f05

View file

@ -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