aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type_caster
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/type_caster')
-rw-r--r--activerecord/lib/active_record/type_caster/connection.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/type_caster/connection.rb b/activerecord/lib/active_record/type_caster/connection.rb
index 3878270770..868d08ed44 100644
--- a/activerecord/lib/active_record/type_caster/connection.rb
+++ b/activerecord/lib/active_record/type_caster/connection.rb
@@ -20,7 +20,7 @@ module ActiveRecord
private
def column_for(attribute_name)
- if connection.schema_cache.table_exists?(table_name)
+ if connection.schema_cache.data_source_exists?(table_name)
connection.schema_cache.columns_hash(table_name)[attribute_name.to_s]
end
end