aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-08-20 12:33:45 -0700
committerZachary Scott <e@zzak.io>2014-08-20 12:33:45 -0700
commit9f575ccf80bc76ef44fadebb66c080cab7647a87 (patch)
treece5aa2d7efce4e4d05fd50d85614c5777dbe3ebc /activerecord
parent6ef0dd94a52a86d87165c2b64f9a434d4c786e1f (diff)
parenteb9f1ef84f5236c6a1d4d46d372bf8fe6e2fff58 (diff)
downloadrails-9f575ccf80bc76ef44fadebb66c080cab7647a87.tar.gz
rails-9f575ccf80bc76ef44fadebb66c080cab7647a87.tar.bz2
rails-9f575ccf80bc76ef44fadebb66c080cab7647a87.zip
Merge pull request #16593 from aditya-kapoor/add-doc-for-step
[ci skip] add doc for STEP in migration
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/migration.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index 9219d70c65..d0d9304a36 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -181,9 +181,12 @@ module ActiveRecord
#
# To roll the database back to a previous migration version, use
# <tt>rake db:migrate VERSION=X</tt> where <tt>X</tt> is the version to which
- # you wish to downgrade. If any of the migrations throw an
- # <tt>ActiveRecord::IrreversibleMigration</tt> exception, that step will fail and you'll
- # have some manual work to do.
+ # you wish to downgrade. Alternatively, you can also use the STEP option if you
+ # wish to rollback last few migrations. <tt>rake db:migrate STEP=2</tt> will rollback
+ # the latest two migrations.
+ #
+ # If any of the migrations throw an <tt>ActiveRecord::IrreversibleMigration</tt> exception,
+ # that step will fail and you'll have some manual work to do.
#
# == Database support
#