aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShinichi Maeshima <netwillnet@gmail.com>2013-07-08 15:53:53 +0900
committerwillnet <netwillnet@gmail.com>2013-07-08 16:44:42 +0900
commitf6b75ff3779913f07c9c79213873fd80809924bf (patch)
tree73d7505b2a0d6aba0393cf2035aaededa6d91958
parentb18a27375a62b7c9848cd2dc7b5cf152ef61b62f (diff)
downloadrails-f6b75ff3779913f07c9c79213873fd80809924bf.tar.gz
rails-f6b75ff3779913f07c9c79213873fd80809924bf.tar.bz2
rails-f6b75ff3779913f07c9c79213873fd80809924bf.zip
Update 'Active Record Migrations' guide [ci skip]
Delete an unneeded line.
-rw-r--r--guides/source/migrations.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index 035f9499de..f191b110cd 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -841,7 +841,6 @@ class AddFlagToProduct < ActiveRecord::Migration
reversible do |dir|
dir.up { Product.update_all flag: false }
end
- Product.update_all flag: false
end
end
```