aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/creating_a_migration.txt
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-09-11 10:20:24 +0100
committerFrederick Cheung <frederick.cheung@gmail.com>2008-09-11 10:24:10 +0100
commitc6da7c536c13555eba6aca82e0b5385b86b21211 (patch)
treee33241135ba565a2dc9a74f462aa5807984282ab /railties/doc/guides/migrations/creating_a_migration.txt
parent1a8edd303de575545ccb90ef11abdc005e9cc48f (diff)
downloadrails-c6da7c536c13555eba6aca82e0b5385b86b21211.tar.gz
rails-c6da7c536c13555eba6aca82e0b5385b86b21211.tar.bz2
rails-c6da7c536c13555eba6aca82e0b5385b86b21211.zip
Fixed many typos
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 6c8c16c771..892c73a533 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 Active Record are also created) will be added for you.
+are automatically populated by Active Record) 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: