aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/migrations.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-10-07 22:20:29 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-10-07 22:20:29 +0530
commit4930f9d2a76c0b4a8f60efa72ade0b9cce3520b6 (patch)
treef1ed80653c6bcb3d89527e71f50b67799b6e4bd9 /railties/guides/source/migrations.textile
parent9312d217d6233710b291dab2d4edde483109e136 (diff)
parentcb244f4f70dbc22813e78e58f6a63392462417f7 (diff)
downloadrails-4930f9d2a76c0b4a8f60efa72ade0b9cce3520b6.tar.gz
rails-4930f9d2a76c0b4a8f60efa72ade0b9cce3520b6.tar.bz2
rails-4930f9d2a76c0b4a8f60efa72ade0b9cce3520b6.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/migrations.textile')
-rw-r--r--railties/guides/source/migrations.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index 9c92d567d3..23e36b39f9 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -628,7 +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 all summed up in the schema file. The "annotate_models":http://agilewebdevelopment.com/plugins/annotate_models plugin, which automatically adds (and updates) comments at the top of each model summarizing 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 summed up in the schema file. The "annotate_models":https://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