aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-10 11:17:09 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-13 13:34:31 -0600
commitea6f28c8a114396376bafe26e1af5d2ca3df6fdb (patch)
tree9b3a3603f95333a3ad9660173bc1673ed2c0b8f7 /activerecord
parent584498a61f56211871698a1db67dd9626c3cadfe (diff)
downloadrails-ea6f28c8a114396376bafe26e1af5d2ca3df6fdb.tar.gz
rails-ea6f28c8a114396376bafe26e1af5d2ca3df6fdb.tar.bz2
rails-ea6f28c8a114396376bafe26e1af5d2ca3df6fdb.zip
Remove unused column types override
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/core.rb3
-rw-r--r--activerecord/lib/active_record/persistence.rb10
2 files changed, 2 insertions, 11 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index 6c089b243e..d39e5fddfe 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -256,7 +256,6 @@ module ActiveRecord
end
@attributes = defaults
- @column_types_override = nil
@column_types = self.class.column_types
init_internals
@@ -283,7 +282,6 @@ module ActiveRecord
# post.title # => 'hello world'
def init_with(coder)
@attributes = coder['attributes']
- @column_types_override = coder['column_types']
@column_types = self.class.column_types
init_internals
@@ -357,7 +355,6 @@ module ActiveRecord
# FIXME: Remove this when we better serialize attributes
coder['raw_attributes'] = attributes_before_type_cast
coder['attributes'] = @attributes
- coder['column_types'] = @column_types_override
coder['new_record'] = new_record?
end
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index c69a83c125..5c744762d9 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -53,12 +53,7 @@ module ActiveRecord
type = column_types.fetch(name) { klass.type_for_attribute(name) }
h[name] = Attribute.from_database(value, type)
end
-
- klass.allocate.init_with(
- 'attributes' => attributes,
- 'column_types' => column_types,
- 'new_record' => false,
- )
+ klass.allocate.init_with('attributes' => attributes, 'new_record' => false)
end
private
@@ -406,8 +401,7 @@ module ActiveRecord
@attributes.update(fresh_object.instance_variable_get('@attributes'))
- @column_types = self.class.column_types
- @column_types_override = fresh_object.instance_variable_get('@column_types_override')
+ @column_types = self.class.column_types
self
end