diff options
author | Frederick Cheung <frederick.cheung@gmail.com> | 2008-09-07 19:43:59 +0100 |
---|---|---|
committer | Frederick Cheung <frederick.cheung@gmail.com> | 2008-09-07 19:43:59 +0100 |
commit | 5f45670f075c6100f4443fb7c30c94013c1d2fd4 (patch) | |
tree | 38e093c2ab6658c58a93d1cce6dde9f07f589744 /railties/doc/guides/migrations | |
parent | e4167b8d0bfdb74c909f47c79defa9d57aa5b4a8 (diff) | |
download | rails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.tar.gz rails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.tar.bz2 rails-5f45670f075c6100f4443fb7c30c94013c1d2fd4.zip |
Add to the preamble
Diffstat (limited to 'railties/doc/guides/migrations')
-rw-r--r-- | railties/doc/guides/migrations/migrations.txt | 7 |
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[] |