method
tables
v4.0.2 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SchemaCache
tables(name = nil)public
No documentation available.
# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 44
def tables(name = nil)
if name
@tables[name]
else
ActiveSupport::Deprecation.warn('call tables with a name!')
@tables.dup
end
end