method

add_all

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: SchemaCache
add_all(pool) 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 396
      def add_all(pool) # :nodoc:
        pool.with_connection do
          tables_to_cache(pool).each do |table|
            add(pool, table)
          end

          version(pool)
        end
      end
Register or log in to add new notes.