method

dump_to

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: SchemaReflection
dump_to(connection, filename) 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 99
      def dump_to(connection, filename)
        fresh_cache = empty_cache
        fresh_cache.add_all(connection)
        fresh_cache.dump_to(filename)

        @cache = fresh_cache
      end
Register or log in to add new notes.