diff options
author | Xavier Noria <fxn@hashref.com> | 2008-11-02 14:55:12 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-11-02 14:55:12 +0100 |
commit | 86e14e3e2c4801f6d68d178bbcb719f82646b0ba (patch) | |
tree | 31c2688c4ab9821844919c2bee662c5c0085c827 | |
parent | 09597f7140b3614573481020c980afadb01e4eb8 (diff) | |
download | rails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.tar.gz rails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.tar.bz2 rails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.zip |
fixes a typo
-rw-r--r-- | railties/doc/guides/source/migrations/rakeing_around.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/migrations/rakeing_around.txt b/railties/doc/guides/source/migrations/rakeing_around.txt index 1fcca0cf24..6d8c43d7a3 100644 --- a/railties/doc/guides/source/migrations/rakeing_around.txt +++ b/railties/doc/guides/source/migrations/rakeing_around.txt @@ -25,7 +25,7 @@ This will run the `down` method from the latest migration. If you need to undo s rake db:rollback STEP=3 ------------------ -will run the `down` method fron the last 3 migrations. +will run the `down` method from the last 3 migrations. The `db:migrate:redo` task is a shortcut for doing a rollback and then migrating back up again. As with the `db:rollback` task you can use the `STEP` parameter if you need to go more than one version back, for example |