Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151109134526_add_issues_state_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c4d2e30171886aadd04fd34f482843d9ca9d7aa (plain)
1
2
3
4
5
class AddIssuesStateIndex < ActiveRecord::Migration
  def change
    add_index :issues, :state
  end
end