aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-04-26 23:18:55 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-04-26 23:18:55 +0530
commitb105dc441b078e3b0db1affc94f970c6233ee709 (patch)
treebdda67791172883de83e734b73f93ad77f8f9b79 /railties
parentd4259d8932c9fe4128bd4b0876f9e48085035032 (diff)
downloadrails-b105dc441b078e3b0db1affc94f970c6233ee709.tar.gz
rails-b105dc441b078e3b0db1affc94f970c6233ee709.tar.bz2
rails-b105dc441b078e3b0db1affc94f970c6233ee709.zip
minor changes in migrations guide
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/migrations.textile12
1 files changed, 5 insertions, 7 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index 39f8a458a0..18ae8a2251 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -58,7 +58,7 @@ end
This migration adds a +receive_newsletter+ column to the +users+ table. We want it to default to +false+ for new users, but existing users are considered
to have already opted in, so we use the User model to set the flag to +true+ for existing users.
-Also, you might also found a smart migration file, which was introduced in the latest version of Rails:
+Rails 3.1 makes migrations smarter by providing a new <tt>change</tt> method. This method is preferred for writing constructive migrations (adding columns or tables). The migration knows how to migrate your database and reverse it when the migration is rolled back without the need to write a separate +down+ method.
<ruby>
class CreateProducts < ActiveRecord::Migration
@@ -73,8 +73,6 @@ class CreateProducts < ActiveRecord::Migration
end
</ruby>
-This smart migration file knows how to migrate your database and reverse it in case you needed. It's more preferrable way to write a constructive (i.e. add column or add table) migration file.
-
NOTE: Some "caveats":#using-models-in-your-migrations apply to using models in your migrations.
h4. Migrations are Classes
@@ -200,8 +198,6 @@ class RemovePartNumberFromProducts < ActiveRecord::Migration
end
</ruby>
-NOTE: The generated migration file for destructive migration will be created using the old-style migration with +up+ and +down+ method. This because Rails doesn't know the original data type defined when you added the column.
-
You are not limited to one magically generated column, for example
<shell>
@@ -221,6 +217,8 @@ end
As always, what has been generated for you is just a starting point. You can add or remove from it as you see fit.
+NOTE: The generated migration file for destructive migrations will still be old-style using the +up+ and +down+ methods. This is because Rails doesn't know the original data types defined when you made the original changes.
+
h3. Writing a Migration
Once you have created your migration using one of the generators it's time to get to work!
@@ -342,14 +340,14 @@ For more details and examples of individual methods check the API documentation,
h4. Writing Your +change+ Method
-The +change+ method of your migration reduce the need for you having to write both +up+ and +down+ method in some case that Rails knows how to revert it. Rails will revert the changes automatically when you rollback your change. Currently, +change+ method only support these migration definitions:
+The +change+ method removes the need to write both +up+ and +down+ methods in those cases that Rails know how to revert the changes automatically. Currently, the +change+ method supports only these migration definitions:
* +create_table+
* +add_column+
* +rename_column+
* +add_index+
-If you're going to use another methods, you'll have to write both +up+ and +down+ method normally.
+If you're going to use other methods, you'll have to write the +up+ and +down+ methods normally.
h4. Writing Your +down+ Method