Flowdock
method

indexes_in_create

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::SchemaDumper
indexes_in_create(table, stream) private

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 172
      def indexes_in_create(table, stream)
        if (indexes = @connection.indexes(table)).any?
          index_statements = indexes.map do |index|
            "    t.index #{index_parts(index).join(', ')}"
          end
          stream.puts index_statements.sort.join("\n")
        end
      end
Register or log in to add new notes.