add(table_name)
Add internal cache for table with table_name.
# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 36 def add(table_name) if table_exists?(table_name) @primary_keys[table_name] @columns[table_name] @columns_hash[table_name] end end