aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-07-08 01:46:59 -0700
committerYves Senn <yves.senn@gmail.com>2013-07-08 01:46:59 -0700
commit4be2003778cdfe06ccaaa2a19040e0cf82dcdde3 (patch)
tree0a671e5983bd696b9fc02fd74f1f848224f198f9 /guides
parentf573df32d43c413a5098721ba6151ff190c23c6c (diff)
parentf6b75ff3779913f07c9c79213873fd80809924bf (diff)
downloadrails-4be2003778cdfe06ccaaa2a19040e0cf82dcdde3.tar.gz
rails-4be2003778cdfe06ccaaa2a19040e0cf82dcdde3.tar.bz2
rails-4be2003778cdfe06ccaaa2a19040e0cf82dcdde3.zip
Merge pull request #11359 from willnet/patch-1
Update 'Active Record Migrations' guide [ci skip]
Diffstat (limited to 'guides')
-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
```