aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/rakeing_around.txt
diff options
context:
space:
mode:
Diffstat (limited to 'railties/doc/guides/migrations/rakeing_around.txt')
-rw-r--r--railties/doc/guides/migrations/rakeing_around.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/doc/guides/migrations/rakeing_around.txt b/railties/doc/guides/migrations/rakeing_around.txt
index 5328941602..9f927d079b 100644
--- a/railties/doc/guides/migrations/rakeing_around.txt
+++ b/railties/doc/guides/migrations/rakeing_around.txt
@@ -2,7 +2,7 @@
Rails provides a set of rake tasks to work with migrations which boils down to running certain sets of migrations. The very first migration related rake task you use will probably be `db:migrate`. In its most basic form it just runs the up method for all the migrations that have not yet been run. If there are no such migrations it exits.
-If you specify a target version. ActiveRecord will run the required migrations (up or down) until it has reached the specified version. The
+If you specify a target version. Active Record will run the required migrations (up or down) 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
`rake db:migrate VERSION=20080906120000`
@@ -37,7 +37,7 @@ If you need to run a specific migration up or down the `db:migrate:up` and `db:m
`rake db:migrate:up VERSION=20080906120000`
-will run the up method from the 20080906120000 migration. These tasks check whether the migration has already run, so for example `db:migrate:up VERSION=20080906120000` will do nothing if ActiveRecord believes that 20080906120000 has already been run.
+will run the up method from the 20080906120000 migration. These tasks 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.
=== Being talkative ===
@@ -97,5 +97,5 @@ generates the following output
== 20080906170109 CreateProducts: migrated (10.0097s) =========================
----------------------
-If you just want ActiveRecord to shut up then running `rake db:migrate VERBOSE=false` will suppress any output.
+If you just want Active Record to shut up then running `rake db:migrate VERBOSE=false` will suppress any output.