Flowdock
method

tables

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: SchemaCache
tables(name = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.