instance method
ignored_table?
Ruby on Rails 7.1.6
Since v7.0.10 PrivateSignature
ignored_table?(table_name)
No documentation comment.
Parameters
-
table_namereq
Source
# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 435
def ignored_table?(table_name)
ActiveRecord.schema_cache_ignored_tables.any? do |ignored|
ignored === table_name
end
end
Defined in activerecord/lib/active_record/connection_adapters/schema_cache.rb line 435
· View on GitHub
· Improve this page
· Find usages on GitHub