aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/migrations.textile
diff options
context:
space:
mode:
authormhutchin <mike@mhutchinson.com>2011-10-07 08:26:05 -0700
committermhutchin <mike@mhutchinson.com>2011-10-07 08:26:05 -0700
commitfca2613ec444face807dc3aecf0d8b59acf30eae (patch)
tree601c8cba979c7dc55a4022cc362fa911907adfd6 /railties/guides/source/migrations.textile
parentd4ea804e21695416a2473ef96ff73e06b74b24a0 (diff)
downloadrails-fca2613ec444face807dc3aecf0d8b59acf30eae.tar.gz
rails-fca2613ec444face807dc3aecf0d8b59acf30eae.tar.bz2
rails-fca2613ec444face807dc3aecf0d8b59acf30eae.zip
Correct formatting
Diffstat (limited to 'railties/guides/source/migrations.textile')
-rw-r--r--railties/guides/source/migrations.textile6
1 files changed, 1 insertions, 5 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index ec812f9e13..6ec4d7f70e 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -628,11 +628,7 @@ There is no need (and it is error prone) to deploy a new instance of an app by r
For example, this is how the test database is created: the current development database is dumped (either to +db/schema.rb+ or +db/development.sql+) and then loaded into the test database.
-Schema files are also useful if you want a quick look at what attributes an Active Record object has. This information is not in the model's code and is
-frequently spread across several migrations, but is summed up in the schema
-file. The "annotate_models":http://github.com/ctran/annotate_models
-gem automatically adds and updates comments at the top of each model summarizing
-the schema if you desire that functionality.
+Schema files are also useful if you want a quick look at what attributes an Active Record object has. This information is not in the model's code and is frequently spread across several migrations, but is summed up in the schema file. The "annotate_models":http://github.com/ctran/annotate_models gem automatically adds and updates comments at the top of each model summarizing the schema if you desire that functionality.
h4. Types of Schema Dumps