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