diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-12-05 05:22:13 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-12-05 05:22:13 -0700 |
commit | c921ba97b80c50f22373ba8779d6a8587511c2f8 (patch) | |
tree | 17f73bf010013025c7885fed72d3923716ad4b3a /railties | |
parent | 3134b467f0436da22d007659a667ac48c3c7ebb0 (diff) | |
download | rails-c921ba97b80c50f22373ba8779d6a8587511c2f8.tar.gz rails-c921ba97b80c50f22373ba8779d6a8587511c2f8.tar.bz2 rails-c921ba97b80c50f22373ba8779d6a8587511c2f8.zip |
Remove redundant or
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/migrations.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile index e67be0ae9f..92356edf90 100644 --- a/railties/guides/source/migrations.textile +++ b/railties/guides/source/migrations.textile @@ -541,7 +541,7 @@ Note that running the +db:migrate+ also invokes the +db:schema:dump+ task, which will update your db/schema.rb file to match the structure of your database. If you specify a target version, Active Record will run the required migrations -(up or down or change) until it has reached the specified version. The version +(up, down or change) until it has reached the specified version. The version is the numerical prefix on the migration's filename. For example, to migrate to version 20080906120000 run |