diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 03:15:22 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 03:15:22 -0700 |
commit | a3156ac0f2d57ca5a57c035530ff5b49f81716f3 (patch) | |
tree | 27e579fe85dbe9aea5a4bb21199887210ace1661 | |
parent | 0774f22941f6846acd79a07d43cd417cd09a1998 (diff) | |
download | rails-a3156ac0f2d57ca5a57c035530ff5b49f81716f3.tar.gz rails-a3156ac0f2d57ca5a57c035530ff5b49f81716f3.tar.bz2 rails-a3156ac0f2d57ca5a57c035530ff5b49f81716f3.zip |
Add output for add_index command
-rw-r--r-- | railties/guides/source/getting_started.textile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index f387dddce8..8faacdd03e 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1186,8 +1186,10 @@ run against the current database, so in this case you will just see: <shell> == CreateComments: migrating ================================================= -- create_table(:comments) - -> 0.0017s -== CreateComments: migrated (0.0018s) ======================================== + -> 0.0008s +-- add_index(:comments, :post_id) + -> 0.0003s +== CreateComments: migrated (0.0012s) ======================================== </shell> h4. Associating Models |