diff options
author | David Peckham <dave.peckham@me.com> | 2011-09-02 13:38:13 -0700 |
---|---|---|
committer | David Peckham <dave.peckham@me.com> | 2011-09-02 13:38:20 -0700 |
commit | b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a (patch) | |
tree | 8e9130175fc43016364647c1cd16157943c5d174 /railties/guides | |
parent | f83f169b85eea4f580ae95609506fbb3cc5b8ccb (diff) | |
download | rails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.tar.gz rails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.tar.bz2 rails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.zip |
Fixed a typo in the section about migration.
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 256df0eded..6e9613cdae 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -592,7 +592,7 @@ class CreatePosts < ActiveRecord::Migration end </ruby> -The above migration creates a method name +change+ which will be called when you +The above migration creates a method named +change+ which will be called when you run this migration. The action defined in that method is also reversible, which means Rails knows how to reverse the change made by this migration, in case you want to reverse it at later date. By default, when you run this migration it |