diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-06-13 17:04:04 -0600 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-06-13 17:04:04 -0600 |
commit | f61d9755964af3c1812e75238e34b53ffb1f0b6a (patch) | |
tree | 5a487892e7e4a3d4c33e6794d70d8680a3bbe2a6 /activerecord/lib/active_record/connection_adapters | |
parent | b0f07abbe385463cb03cfc890b85bb8ce3d5ccef (diff) | |
download | rails-f61d9755964af3c1812e75238e34b53ffb1f0b6a.tar.gz rails-f61d9755964af3c1812e75238e34b53ffb1f0b6a.tar.bz2 rails-f61d9755964af3c1812e75238e34b53ffb1f0b6a.zip |
Remove `serialized?` from the type interface
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/column.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/column.rb b/activerecord/lib/active_record/connection_adapters/column.rb index 72c6990ba5..d629fca911 100644 --- a/activerecord/lib/active_record/connection_adapters/column.rb +++ b/activerecord/lib/active_record/connection_adapters/column.rb @@ -16,7 +16,7 @@ module ActiveRecord attr_reader :name, :cast_type, :null, :sql_type, :default_function delegate :type, :precision, :scale, :limit, :klass, :accessor, - :text?, :number?, :binary?, :serialized?, :changed?, + :text?, :number?, :binary?, :changed?, :type_cast_from_user, :type_cast_from_database, :type_cast_for_database, :type_cast_for_schema, to: :cast_type |