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