aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/migrations.txt
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 22:53:49 +0100
committerFrederick Cheung <frederick.cheung@gmail.com>2008-09-07 22:53:49 +0100
commit22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9 (patch)
treed421bfd70a3a6b4644397ca33e7191319fd022e2 /railties/doc/guides/migrations/migrations.txt
parent5f45670f075c6100f4443fb7c30c94013c1d2fd4 (diff)
downloadrails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.tar.gz
rails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.tar.bz2
rails-22c8ebedec2e2eeb4f5084b3d99fd9ea4774def9.zip
ActiveRecord -> Active Record
Diffstat (limited to 'railties/doc/guides/migrations/migrations.txt')
-rw-r--r--railties/doc/guides/migrations/migrations.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/migrations/migrations.txt b/railties/doc/guides/migrations/migrations.txt
index c237415a3b..5af9ea633b 100644
--- a/railties/doc/guides/migrations/migrations.txt
+++ b/railties/doc/guides/migrations/migrations.txt
@@ -1,14 +1,14 @@
Migrations
==========
-Migrations are a convenient way for you to alter your database in a structured and organised manner. ActiveRecord takes care of working out which migrations have already been run so you can just update your source and run the migrations, leaving ActiveRecord to work out the details.
+Migrations are a convenient way for you to alter your database in a structured and organised manner. Active Record takes care of working out which migrations have already been run so you can just update your source and run the migrations, leaving Active Record to work out the details.
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).
You'll learn all about migrations including:
* The generators you can use to create them
-* The methods ActiveRecord provides to manipulate your database
+* The methods Active Record provides to manipulate your database
* The rake tasks that manipulate them
* How they relate to schema.rb