new(connection, options = {}) 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/schema_dumper.rb, line 71
      def initialize(connection, options = {})
        @connection = connection
        @version = connection.migration_context.current_version rescue nil
        @options = options
        @ignore_tables = [
          ActiveRecord::Base.schema_migrations_table_name,
          ActiveRecord::Base.internal_metadata_table_name,
          self.class.ignore_tables
        ].flatten
      end
Register or log in to add new notes.