aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/persistence.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index 569ef4bcda..32b62d12e1 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -204,11 +204,6 @@ module ActiveRecord
# Raises an +ActiveRecordError+ when called on new objects, or when the +name+
# attribute is marked as readonly.
def update_column(name, value)
- msg = "update_column is deprecated and will be removed in 4.1. Please use update_columns. " \
- "E.g. update_columns(foo: 'bar')"
-
- ActiveSupport::Deprecation.warn(msg)
-
update_columns(name => value)
end