aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-22 18:35:41 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-22 18:35:41 +0000
commit0442f1ea75ab83a6aed3851ef8b3201a925ad8a1 (patch)
tree96dd91782e36bc4bf7dbbf6005845e1b622cda35 /activerecord/lib
parent3dcae9fefd0af8f7f8e7d3368ec36128880add51 (diff)
downloadrails-0442f1ea75ab83a6aed3851ef8b3201a925ad8a1.tar.gz
rails-0442f1ea75ab83a6aed3851ef8b3201a925ad8a1.tar.bz2
rails-0442f1ea75ab83a6aed3851ef8b3201a925ad8a1.zip
Docfix (closes #7593) [tarmo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7570 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/migration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index f7f9ad4634..2bec244263 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -92,11 +92,11 @@ module ActiveRecord
# n MyNewMigration.
#
# To run migrations against the currently configured database, use
- # <tt>rake migrate</tt>. This will update the database by running all of the
+ # <tt>rake db:migrate</tt>. This will update the database by running all of the
# pending migrations, creating the <tt>schema_info</tt> table if missing.
#
# To roll the database back to a previous migration version, use
- # <tt>rake migrate VERSION=X</tt> where <tt>X</tt> is the version to which
+ # <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>IrreversibleMigration</tt> exception, that step will fail and you'll
# have some manual work to do.