提交 3e9070e6 编写于 作者: R Rafael França 提交者: GitHub

Merge pull request #26019 from agrobbin/schema-load-unique-column-indices

Support multiple indexes on the same column when loading the schema
......@@ -211,7 +211,7 @@ class TableDefinition
def initialize(name, temporary = false, options = nil, as = nil, comment: nil)
@columns_hash = {}
@indexes = {}
@indexes = []
@foreign_keys = []
@primary_keys = nil
@temporary = temporary
......@@ -327,7 +327,7 @@ def remove_column(name)
#
# index(:account_id, name: 'index_projects_on_account_id')
def index(column_name, options = {})
indexes[column_name] = options
indexes << [column_name, options]
end
def foreign_key(table_name, options = {}) # :nodoc:
......
......@@ -278,7 +278,7 @@ def create_table(table_name, comment: nil, **options)
result = execute schema_creation.accept td
unless supports_indexes_in_create?
td.indexes.each_pair do |column_name, index_options|
td.indexes.each do |column_name, index_options|
add_index(table_name, column_name, index_options)
end
end
......
......@@ -17,6 +17,7 @@ class ActiveRecordSchemaTest < ActiveRecord::TestCase
@connection.drop_table :nep_fruits rescue nil
@connection.drop_table :nep_schema_migrations rescue nil
@connection.drop_table :has_timestamps rescue nil
@connection.drop_table :multiple_indexes rescue nil
ActiveRecord::SchemaMigration.delete_all rescue nil
ActiveRecord::Migration.verbose = @original_verbose
end
......@@ -93,6 +94,21 @@ def test_normalize_version
assert_equal "20131219224947", ActiveRecord::SchemaMigration.normalize_migration_number("20131219224947")
end
def test_schema_load_with_multiple_indexes_for_column_of_different_names
ActiveRecord::Schema.define do
create_table :multiple_indexes do |t|
t.string "foo"
t.index ["foo"], name: "multiple_indexes_foo_1"
t.index ["foo"], name: "multiple_indexes_foo_2"
end
end
indexes = @connection.indexes("multiple_indexes")
assert_equal 2, indexes.length
assert_equal ["multiple_indexes_foo_1", "multiple_indexes_foo_2"], indexes.collect(&:name).sort
end
def test_timestamps_without_null_set_null_to_false_on_create_table
ActiveRecord::Schema.define do
create_table :has_timestamps do |t|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册