diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-05 13:46:35 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-05 13:46:35 -0600 |
commit | 76698441453821fb175799b99099322688bde6c1 (patch) | |
tree | 913f6398093e9e19896fddb2033dd5cd2d94c5eb /activerecord/lib/active_record | |
parent | db448209bd70e2e662de8aa5527f30a38fd378a9 (diff) | |
parent | 40d2b5521224e40bef80e3435d14dff94dc7af23 (diff) | |
download | rails-76698441453821fb175799b99099322688bde6c1.tar.gz rails-76698441453821fb175799b99099322688bde6c1.tar.bz2 rails-76698441453821fb175799b99099322688bde6c1.zip |
Merge pull request #21872 from kirs/chore/attributes-cleanup
No need to declare ActiveRecord::Attributes::Type
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/attributes.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/attributes.rb b/activerecord/lib/active_record/attributes.rb index 8b2c4c7170..a573f76a8e 100644 --- a/activerecord/lib/active_record/attributes.rb +++ b/activerecord/lib/active_record/attributes.rb @@ -5,9 +5,6 @@ module ActiveRecord module Attributes extend ActiveSupport::Concern - # :nodoc: - Type = ActiveRecord::Type - included do class_attribute :attributes_to_define_after_schema_loads, instance_accessor: false # :internal: self.attributes_to_define_after_schema_loads = {} |