Add an index to improve the performance of issue queries involving custom fields (#29171).

Contributed by Stephane Evr.


git-svn-id: https://svn.redmine.org/redmine/trunk@21955 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2022-11-10 23:49:02 +00:00
parent b9379e7a26
commit 09f6fcd49c

View File

@@ -0,0 +1,6 @@
class AddIndexToCustomValues < ActiveRecord::Migration[6.1]
def change
remove_index :custom_values, column: [:customized_type, :customized_id], name: :custom_values_customized, if_exists: true
add_index :custom_values, [:customized_type, :customized_id, :custom_field_id], name: :custom_values_customized_custom_field
end
end