diff options
author | Jason Noble <perlwizard@gmail.com> | 2011-12-03 19:01:53 -0700 |
---|---|---|
committer | Jason Noble <perlwizard@gmail.com> | 2011-12-03 19:31:43 -0700 |
commit | f9cc3f0d8ea26de06f57ee33a575733a72dc7bd7 (patch) | |
tree | 35ee39ca7f5c110213a1b7e1f540442c271374c3 /railties/guides/source/migrations.textile | |
parent | 9d87fb8f684698cae7ee281bc5cf17db907d8cdd (diff) | |
download | rails-f9cc3f0d8ea26de06f57ee33a575733a72dc7bd7.tar.gz rails-f9cc3f0d8ea26de06f57ee33a575733a72dc7bd7.tar.bz2 rails-f9cc3f0d8ea26de06f57ee33a575733a72dc7bd7.zip |
Improve wording, fix some formatting issues
Diffstat (limited to 'railties/guides/source/migrations.textile')
-rw-r--r-- | railties/guides/source/migrations.textile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile index 13fc76359f..4f52e3ee8d 100644 --- a/railties/guides/source/migrations.textile +++ b/railties/guides/source/migrations.textile @@ -18,11 +18,12 @@ is database independent: you don't need to worry about the precise syntax of drop down to raw SQL for database specific features). For example you could use SQLite3 in development, but MySQL in production. -You'll learn all about migrations including: +In this guide, you'll learn all about migrations including: -* The generators you can use to create them The methods Active Record provides -* to manipulate your database The Rake tasks that manipulate them How they -* relate to +schema.rb+ +* The generators you can use to create them +* The methods Active Record provides to manipulate your database +* The Rake tasks that manipulate them +* How they relate to +schema.rb+ endprologue. |