instance method
ignored_table?
Ruby on Rails 7.2.3
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 436
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 436
· View on GitHub
· Improve this page
· Find usages on GitHub