aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/creating_a_migration.txt
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 22:53:49 +0100
committerFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 22:53:49 +0100
commit22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9 (patch)
treed421bfd70a3a6b4644397ca33e7191319fd022e2 /railties/doc/guides/migrations/creating_a_migration.txt
parent5f45670f075c6100f4443fb7c30c94013c1d2fd4 (diff)
downloadrails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.tar.gz
rails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.tar.bz2
rails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.zip
ActiveRecord -> Active Record
Diffstat (limited to 'railties/doc/guides/migrations/creating_a_migration.txt')
-rw-r--r--railties/doc/guides/migrations/creating_a_migration.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/migrations/creating_a_migration.txt b/railties/doc/guides/migrations/creating_a_migration.txt
index 0574e0eb7b..6c8c16c771 100644
--- a/railties/doc/guides/migrations/creating_a_migration.txt
+++ b/railties/doc/guides/migrations/creating_a_migration.txt
@@ -25,7 +25,7 @@ end
-----------------------
You can append as many column name/type pairs as you want. By default `t.timestamps` (which creates the `updated_at` and `created_at` columns that
-are automatically populated by ActiveRecord are also created) will be added for you.
+are automatically populated by Active Record are also created) will be added for you.
=== Creating a standalone migration ===
If you are creating migrations for other purposes (for example to add a column to an existing table) then you can use the migration generator: