aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mailers
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-12-06 23:09:11 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-12-06 23:49:53 -0200
commita3c3cfdd0ebba26bb9dfc0bfd4e23a5f336730c0 (patch)
treec2a9ce17e80fab8246b005aced974a4d45907d29 /actionmailer/test/mailers
parentd70539c1ec4c1f615bb359468b7b0c58276bf71b (diff)
downloadrails-a3c3cfdd0ebba26bb9dfc0bfd4e23a5f336730c0.tar.gz
rails-a3c3cfdd0ebba26bb9dfc0bfd4e23a5f336730c0.tar.bz2
rails-a3c3cfdd0ebba26bb9dfc0bfd4e23a5f336730c0.zip
Unscope update_column(s) query to ignore default scope
When applying default_scope to a class with a where clause, using update_column(s) could generate a query that would not properly update the record due to the where clause from the default_scope being applied to the update query. class User < ActiveRecord::Base default_scope where(active: true) end user = User.first user.active = false user.save! user.update_column(:active, true) # => false In this situation we want to skip the default_scope clause and just update the record based on the primary key. With this change: user.update_column(:active, true) # => true Backport of #8436 fix. Conflicts: activerecord/CHANGELOG.md activerecord/lib/active_record/persistence.rb activerecord/test/cases/persistence_test.rb
Diffstat (limited to 'actionmailer/test/mailers')
0 files changed, 0 insertions, 0 deletions