diff options
author | Jason Noble <perlwizard@gmail.com> | 2011-12-03 19:22:12 -0700 |
---|---|---|
committer | Jason Noble <perlwizard@gmail.com> | 2011-12-03 19:31:44 -0700 |
commit | d1ef1b2220947d772c9b2b8e8e4bc735fc6bdb71 (patch) | |
tree | 71e842314d3257a66fad389d29deff8f4a73fe07 /railties | |
parent | 90f18cc85ec33332ee9caab2b5172b38f91432b1 (diff) | |
download | rails-d1ef1b2220947d772c9b2b8e8e4bc735fc6bdb71.tar.gz rails-d1ef1b2220947d772c9b2b8e8e4bc735fc6bdb71.tar.bz2 rails-d1ef1b2220947d772c9b2b8e8e4bc735fc6bdb71.zip |
Improve readability
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/migrations.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile index ab7b8b5ae2..a1a4afc067 100644 --- a/railties/guides/source/migrations.textile +++ b/railties/guides/source/migrations.textile @@ -605,8 +605,8 @@ example, $ rake db:migrate:up VERSION=20080906120000 </shell> -will run the +up+ method from the 20080906120000 migration. These tasks check -whether the migration has already run, so for example +db:migrate:up +will run the +up+ method from the 20080906120000 migration. These tasks still +check whether the migration has already run, so for example +db:migrate:up VERSION=20080906120000+ will do nothing if Active Record believes that 20080906120000 has already been run. |