50f6541610
This field is queried when filtering issues and due to the lack of an index would end up triggering a sequence scan.
5 lines
105 B
Ruby
5 lines
105 B
Ruby
class AddIssuesStateIndex < ActiveRecord::Migration
|
|
def change
|
|
add_index :issues, :state
|
|
end
|
|
end
|