method
indexes_in_create
v7.1.3.4 -
Show latest stable
-
0 notes -
Class: ActiveRecord::SchemaDumper
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
indexes_in_create(table, stream)
private
Hide source
# File activerecord/lib/active_record/schema_dumper.rb, line 224 def indexes_in_create(table, stream) if (indexes = @connection.indexes(table)).any? if @connection.supports_exclusion_constraints? && (exclusion_constraints = @connection.exclusion_constraints(table)).any? exclusion_constraint_names = exclusion_constraints.collect(&:name) indexes = indexes.reject { |index| exclusion_constraint_names.include?(index.name) } end if @connection.supports_unique_constraints? && (unique_constraints = @connection.unique_constraints(table)).any? unique_constraint_names = unique_constraints.collect(&:name) indexes = indexes.reject { |index| unique_constraint_names.include?(index.name) } end index_statements = indexes.map do |index| " t.index #{index_parts(index).join(', ')}" end stream.puts index_statements.sort.join("\n") end end