aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 19:43:59 +0100
committerFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 19:43:59 +0100
commit5f45670f075c6100f4443fb7c30c94013c1d2fd4 (patch)
tree38e093c2ab6658c58a93d1cce6dde9f07f589744 /railties
parente4167b8d0bfdb74c909f47c79defa9d57aa5b4a8 (diff)
downloadrails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.tar.gz
rails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.tar.bz2
rails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.zip
Add to the preamble
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/migrations/migrations.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/railties/doc/guides/migrations/migrations.txt b/railties/doc/guides/migrations/migrations.txt
index 71b49f6a8f..c237415a3b 100644
--- a/railties/doc/guides/migrations/migrations.txt
+++ b/railties/doc/guides/migrations/migrations.txt
@@ -5,7 +5,12 @@ Migrations are a convenient way for you to alter your database in a structured a
Migrations also allow you to describe these transformation using ruby, in a database independent way (you can drop down to raw SQL for database specific features).
-Rails packages a number of rake tasks and generators for working with migrations and you'll learn about those too.
+You'll learn all about migrations including:
+
+* The generators you can use to create them
+* The methods ActiveRecord provides to manipulate your database
+* The rake tasks that manipulate them
+* How they relate to schema.rb
include::anatomy_of_a_migration.txt[]
include::creating_a_migration.txt[]