summaryrefslogtreecommitdiff
path: root/db/migrate/20151109134526_add_issues_state_index.rb
blob: 7a9970e85914eccf85823c57d1e2f47a3adba6af (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIssuesStateIndex < ActiveRecord::Migration
  def change
    add_index :issues, :state
  end
end