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: 7a9970e85914eccf85823c57d1e2f47a3adba6af (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIssuesStateIndex < ActiveRecord::Migration
  def change
    add_index :issues, :state
  end
end