diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-11-06 01:10:30 +0530 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-11-06 01:10:30 +0530 |
commit | 396d599e24cbfa15c62b20fab8cc02cdba046ce3 (patch) | |
tree | 11dd8368e2674342098af21136893bee491c44ff /railties/doc/guides/source/migrations | |
parent | 32089cbcc9ca3fb935f783e7a7ef2b60b7d43006 (diff) | |
download | rails-396d599e24cbfa15c62b20fab8cc02cdba046ce3.tar.gz rails-396d599e24cbfa15c62b20fab8cc02cdba046ce3.tar.bz2 rails-396d599e24cbfa15c62b20fab8cc02cdba046ce3.zip |
Update guides from docrails
Diffstat (limited to 'railties/doc/guides/source/migrations')
-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 |