Merge pull request #11359 from willnet/patch-1

Update 'Active Record Migrations' guide [ci skip]
This commit is contained in:
Yves Senn 2013-07-08 01:46:59 -07:00
commit 4be2003778
1 changed files with 0 additions and 1 deletions

View File

@ -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
```