aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-11-09 10:04:47 +0100
committerXavier Noria <fxn@hashref.com>2008-11-09 10:04:47 +0100
commit2146b34ee7c4131afd4762442812caebb0ea71d7 (patch)
tree3c241a09fd6436c4e0159a6523697e7d6fe62cbc /railties/doc/guides/source
parent367282a634a65c47f073ec8a5bf5c6d8c5916a73 (diff)
downloadrails-2146b34ee7c4131afd4762442812caebb0ea71d7.tar.gz
rails-2146b34ee7c4131afd4762442812caebb0ea71d7.tar.bz2
rails-2146b34ee7c4131afd4762442812caebb0ea71d7.zip
fixed missing "you" reported by Brandon Zylstra in LH
Diffstat (limited to 'railties/doc/guides/source')
-rw-r--r--railties/doc/guides/source/migrations/scheming.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/migrations/scheming.txt b/railties/doc/guides/source/migrations/scheming.txt
index ba4fea8fe3..7acd3f9190 100644
--- a/railties/doc/guides/source/migrations/scheming.txt
+++ b/railties/doc/guides/source/migrations/scheming.txt
@@ -7,7 +7,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 `schema.rb` or `development.sql`) and then loaded into the test database.
-Schema files are also useful if 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 all summed up in the schema file. The http://agilewebdevelopment.com/plugins/annotate_models[annotate_models] plugin, which automatically adds (and updates) comments at the top of each model summarising the schema, may also be of interest.
+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 all summed up in the schema file. The http://agilewebdevelopment.com/plugins/annotate_models[annotate_models] plugin, which automatically adds (and updates) comments at the top of each model summarising the schema, may also be of interest.
=== Types of schema dumps ===
There are two ways to dump the schema. This is set in `config/environment.rb` by the `config.active_record.schema_format` setting, which may be either `:sql` or `:ruby`.